完成分配菜单
@ -76,10 +76,7 @@ namespace OpenAuth.Domain.Service
|
||||
{
|
||||
return listVms;
|
||||
}
|
||||
|
||||
if (moduleId == Guid.Empty) return listVms;
|
||||
string modulename = service.GetModulesQuery().SingleOrDefault(u => u.Id == moduleId).Name;
|
||||
|
||||
foreach (var element in service.GetModuleElementsQuery().Where(u =>u.ModuleId ==moduleId))
|
||||
{
|
||||
var accessed = _unitWork.FindSingle<Relevance>(u =>u.Key == accessType
|
||||
@ -90,8 +87,7 @@ namespace OpenAuth.Domain.Service
|
||||
Name = element.Name,
|
||||
ModuleId = element.ModuleId,
|
||||
DomId = element.DomId,
|
||||
ModuleName = modulename,
|
||||
Accessed = accessed != null
|
||||
Checked = accessed != null
|
||||
};
|
||||
listVms.Add(vm);
|
||||
}
|
||||
|
@ -10,94 +10,72 @@
|
||||
//Description: 分配模块菜单(按钮)
|
||||
// ***********************************************************************
|
||||
|
||||
$(document).ready(function () {
|
||||
$.CurrentDialog.find("#btnAccess").on("click", function () {
|
||||
var ids = dlgList.getSelectedProperties('Id');
|
||||
if (ids == null) return;
|
||||
function renderLayui() {
|
||||
layui.use(['layer', 'form'], function () {
|
||||
var form = layui.form();
|
||||
|
||||
$.post('/RelevanceManager/Assign', {
|
||||
type: $("#moduleType").val(),
|
||||
firstId: $('#firstId').val(),
|
||||
secIds: ids
|
||||
}, function (json) {
|
||||
json = $.parseJSON(json);
|
||||
if (json.statusCode != "200") {
|
||||
$(this).alertmsg('warn', json.message);
|
||||
return;
|
||||
form.on('checkbox', function (data) {
|
||||
if (data.elem.checked) {
|
||||
$.post('/RelevanceManager/Assign', {
|
||||
type: $("#moduleType").val(),
|
||||
firstId: $('#firstId').val(),
|
||||
secIds: data.value
|
||||
}, function (json) {
|
||||
json = $.parseJSON(json);
|
||||
|
||||
});
|
||||
}
|
||||
dlgList.reload();
|
||||
});
|
||||
});
|
||||
$.CurrentDialog.find("#btnDelAccess").on("click", function () {
|
||||
var ids = dlgList.getSelectedProperties('Id');
|
||||
if (ids == null) return;
|
||||
else {
|
||||
$.post('/RelevanceManager/UnAssign', {
|
||||
type: $("#moduleType").val(),
|
||||
firstId: $('#firstId').val(),
|
||||
secIds: data.value
|
||||
}, function (json) {
|
||||
json = $.parseJSON(json);
|
||||
|
||||
$.post('/RelevanceManager/UnAssign', {
|
||||
type: $("#moduleType").val(),
|
||||
firstId: $('#firstId').val(),
|
||||
secIds: ids
|
||||
}, function (json) {
|
||||
json = $.parseJSON(json);
|
||||
if (json.statusCode != "200") {
|
||||
$(this).alertmsg('warn', json.message);
|
||||
return;
|
||||
});
|
||||
}
|
||||
dlgList.reload();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
//grid列表模块
|
||||
function DialogList() {
|
||||
form.render();
|
||||
});
|
||||
}
|
||||
|
||||
var list = function () {
|
||||
var selectedId = '00000000-0000-0000-0000-000000000000'; //选中的ID
|
||||
var url = '/ModuleElementManager/LoadWithAccess?tId=';
|
||||
this.maingrid = $.CurrentDialog.find('#maingrid').datagrid({
|
||||
showToolbar: false,
|
||||
loadType: 'GET',
|
||||
filterThead: false,
|
||||
target: $(this),
|
||||
columns: [
|
||||
{
|
||||
name: 'Id',
|
||||
label: '元素名称',
|
||||
hide: true
|
||||
},
|
||||
{
|
||||
name: 'Name',
|
||||
label: '元素名称',
|
||||
width: 80
|
||||
},
|
||||
{
|
||||
name: 'ModuleName',
|
||||
label: '所属模块',
|
||||
width: 80
|
||||
},
|
||||
{
|
||||
name: 'Accessed',
|
||||
label: '是否已经授权',
|
||||
align: 'center',
|
||||
items: [{ 'false': '未授权', 'true': '已授权' }],
|
||||
width: 80
|
||||
}
|
||||
],
|
||||
dataUrl: url + selectedId + '&key=' + $('#moduleType').val() + '&firstId=' + $('#firstId').val(),
|
||||
fullGrid: true,
|
||||
showLinenumber: true,
|
||||
showCheckboxcol: true,
|
||||
paging: true,
|
||||
filterMult: false,
|
||||
showTfoot: false,
|
||||
|
||||
});
|
||||
this.reload = function (id) {
|
||||
if (id != undefined) selectedId = id;
|
||||
this.maingrid.datagrid('reload', { dataUrl: url + selectedId + '&key=' + $('#moduleType').val() + '&firstId=' + $('#firstId').val() });
|
||||
var url = '/ModuleElementManager/LoadWithAccess?firstId=' + $("#firstId").val() + "&key=" + $("#moduleType").val() + "&tId=";
|
||||
return {
|
||||
reload: function (id) {
|
||||
if (id != undefined) selectedId = id;
|
||||
$.getJSON(url + selectedId,
|
||||
function (data) {
|
||||
var str = '';
|
||||
if (data.length > 0) {
|
||||
$.each(data,
|
||||
function () {
|
||||
str += "<input type=\"checkbox\" name=\"\" value=\""+this.Id+"\" title=\"" + this.Name + "\"";
|
||||
if (this.Checked) {
|
||||
str += " checked ";
|
||||
}
|
||||
str += ">\r\n";
|
||||
});
|
||||
}
|
||||
$("#moduleElements").html(str);
|
||||
renderLayui();
|
||||
});
|
||||
}
|
||||
};
|
||||
}();
|
||||
//左边导航
|
||||
var ztree = function() {
|
||||
var url;
|
||||
var type = $("#moduleType");
|
||||
if (type.val() == "UserElement") {
|
||||
url = '/ModuleManager/LoadForUser';
|
||||
} else {
|
||||
url = '/ModuleManager/LoadForRole';
|
||||
}
|
||||
};
|
||||
DialogList.prototype = new Grid();
|
||||
var dlgList = new DialogList();
|
||||
|
||||
var ztree = function () {
|
||||
var setting = {
|
||||
view: { selectedMulti: false },
|
||||
data: {
|
||||
@ -112,22 +90,25 @@ var ztree = function () {
|
||||
rootPId: 'null'
|
||||
}
|
||||
},
|
||||
callback: { onClick: zTreeOnClick }
|
||||
callback: {
|
||||
onClick: function(event, treeId, treeNode) {
|
||||
list.reload(treeNode.Id);
|
||||
}
|
||||
}
|
||||
};
|
||||
var load = function() {
|
||||
$.getJSON(url,
|
||||
{ firstId: $("#firstId").val() },
|
||||
function(json) {
|
||||
var zTreeObj = $.fn.zTree.init($("#orgtree"), setting, json);
|
||||
list.reload();
|
||||
zTreeObj.expandAll(true);
|
||||
});
|
||||
};
|
||||
load();
|
||||
|
||||
var url;
|
||||
var type = $("#moduleType");
|
||||
if (type.val() == "UserElement") {
|
||||
url = '/ModuleManager/LoadForUser';
|
||||
} else {
|
||||
url = '/ModuleManager/LoadForRole';
|
||||
return {
|
||||
reload: load
|
||||
}
|
||||
|
||||
$.getJSON(url, { firstId: $("#firstId").val() }, function(json) {
|
||||
var zTreeObj = $.fn.zTree.init($.CurrentDialog.find("#tree"), setting, json);
|
||||
zTreeObj.expandAll(true);
|
||||
});
|
||||
}();
|
||||
function zTreeOnClick(event, treeId, treeNode) {
|
||||
dlgList.reload(treeNode.Id);
|
||||
}
|
||||
|
||||
|
@ -194,16 +194,11 @@ function assignRoleModule(obj) {
|
||||
var selected = list.getSelectedObj();
|
||||
if (selected == null) return;
|
||||
|
||||
$(obj).dialog({
|
||||
id: 'accessUserOrg',
|
||||
url: '/ModuleManager/Assign',
|
||||
title: '为角色分配模块',
|
||||
width: 620,
|
||||
height: 500,
|
||||
data: {
|
||||
firstId: selected.Id,
|
||||
key: "RoleModule"
|
||||
}
|
||||
layer.open({
|
||||
type: 2,
|
||||
skin: 'layui-layer-rim', //加上边框
|
||||
area: ['410px', '390px'], //宽高
|
||||
content: '/ModuleManager/Assign?key=RoleModule&firstId=' + selected.Id
|
||||
});
|
||||
}
|
||||
|
||||
@ -230,16 +225,11 @@ function assignRoleElement(obj) {
|
||||
var selected = list.getSelectedObj();
|
||||
if (selected == null) return;
|
||||
|
||||
$(obj).dialog({
|
||||
id: 'accessRoleElement',
|
||||
url: '/ModuleElementManager/AssignModuleElement',
|
||||
title: '为角色分配菜单',
|
||||
width: 600,
|
||||
height: 380,
|
||||
data: {
|
||||
firstId: selected.Id,
|
||||
key: "RoleElement"
|
||||
}
|
||||
layer.open({
|
||||
type: 2,
|
||||
skin: 'layui-layer-rim', //加上边框
|
||||
area: ['600px', '400px'], //宽高
|
||||
content: '/ModuleElementManager/AssignModuleElement?key=RoleElement&firstId=' + selected.Id
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -253,15 +253,10 @@ function openAssignUserElement(obj) {
|
||||
var selected = list.getSelectedObj();
|
||||
if (selected == null) return;
|
||||
|
||||
$(obj).dialog({
|
||||
id: 'accessUserElement',
|
||||
url: '/ModuleElementManager/AssignModuleElement',
|
||||
title: '为用户分配资源',
|
||||
width: 600,
|
||||
height: 380,
|
||||
data: {
|
||||
firstId: selected.Id,
|
||||
key: "UserElement"
|
||||
}
|
||||
layer.open({
|
||||
type: 2,
|
||||
skin: 'layui-layer-rim', //加上边框
|
||||
area: ['600px', '300px'], //宽高
|
||||
content: '/ModuleElementManager/AssignModuleElement?key=UserElement&firstId=' + selected.Id
|
||||
});
|
||||
}
|
@ -1,3 +1,14 @@
|
||||
.layui-elem-field {
|
||||
border: 1px solid #5fb878;
|
||||
}
|
||||
|
||||
.site-tips {
|
||||
margin-bottom: 10px;
|
||||
padding: 15px;
|
||||
border-left: 5px solid #0078AD;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
|
||||
body .site-tips p {
|
||||
margin: 0;
|
||||
}
|
||||
|
Before Width: | Height: | Size: 399 B |
@ -118,6 +118,28 @@ namespace OpenAuth.Mvc.Controllers
|
||||
return JsonHelper.Instance.Serialize(orgs);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 加载用户模块
|
||||
/// </summary>
|
||||
/// <param name="firstId">The user identifier.</param>
|
||||
/// <returns>System.String.</returns>
|
||||
public string LoadForUser(Guid firstId)
|
||||
{
|
||||
var orgs = _app.LoadForUser(firstId);
|
||||
return JsonHelper.Instance.Serialize(orgs);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 加载角色模块
|
||||
/// </summary>
|
||||
/// <param name="firstId">The role identifier.</param>
|
||||
/// <returns>System.String.</returns>
|
||||
public string LoadForRole(Guid firstId)
|
||||
{
|
||||
var orgs = _app.LoadForRole(firstId);
|
||||
return JsonHelper.Instance.Serialize(orgs);
|
||||
}
|
||||
|
||||
public string LoadModuleWithRoot()
|
||||
{
|
||||
var orgs = AuthUtil.GetCurrentUser().Modules.MapToList<ModuleView>();
|
||||
|
@ -1059,21 +1059,6 @@
|
||||
<Content Include="Content\plugins\zTree\css\metroStyle\img\metro.gif" />
|
||||
<Content Include="Content\plugins\zTree\css\metroStyle\img\metro.png" />
|
||||
<Content Include="Content\plugins\zTree\css\metroStyle\metroStyle.css" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\1_close.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\1_open.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\2.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\3.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\4.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\5.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\6.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\7.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\8.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\diy\9.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\line_conn.gif" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\loading.gif" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\zTreeStandard.gif" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\img\zTreeStandard.png" />
|
||||
<Content Include="Content\plugins\zTree\css\zTreeStyle\zTreeStyle.css" />
|
||||
<Content Include="Content\plugins\zTree\js\jquery-1.4.4.min.js" />
|
||||
<Content Include="Content\plugins\zTree\js\jquery.ztree.all.js" />
|
||||
<Content Include="Content\plugins\zTree\js\jquery.ztree.all.min.js" />
|
||||
|
@ -1,31 +1,25 @@
|
||||
<div class="bjui-pageHeader">
|
||||
<div class="bjui-searchBar">
|
||||
<input style="display: none" id="firstId" value="@ViewBag.FirstId" />
|
||||
<input style="display: none" id="moduleType" , value="@ViewBag.ModuleType" />
|
||||
<div class="pull-right">
|
||||
<div class="alert alert-info search-inline">
|
||||
<i class="fa fa-info-circle"></i> 点击行为单选,点击复选框可多选统一授权
|
||||
</div>
|
||||
<button type="button" class="btn btn-green" data-num="1" data-icon="plus" id="btnAccess">
|
||||
授权选中
|
||||
</button>
|
||||
<button type="button" class="btn btn-danger" data-num="1" data-icon="trash" id="btnDelAccess">
|
||||
取消授权
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
<link href="~/Content/layui/css/layui.css" rel="stylesheet" />
|
||||
<link href="~/Content/mylayer.css" rel="stylesheet" />
|
||||
<script src="~/Content/layui/layui.js"></script>
|
||||
<script src="~/Content/plugins/jQuery/jQuery-2.1.4.min.js"></script>
|
||||
<script src="~/Content/plugins/zTree/js/jquery.ztree.core.js"></script>
|
||||
<link href="/Content/plugins/zTree/css/metroStyle/metroStyle.css" rel="stylesheet" />
|
||||
|
||||
<div style="display: inline-block; width: 180px; height: 210px; padding: 10px; border: 1px solid #ddd; overflow: auto;">
|
||||
<input style="display: none" id="firstId" value="@ViewBag.FirstId" />
|
||||
<input style="display: none" id="moduleType" , value="@ViewBag.ModuleType" />
|
||||
<ul id="orgtree" class="ztree" style="width: 100%"></ul>
|
||||
</div>
|
||||
|
||||
<div class="bjui-pageContent tableContent">
|
||||
<div class="clearfix">
|
||||
<div style="float: left; width: 220px; overflow: auto;" class="table table-bordered">
|
||||
<ul id="tree" class="ztree"></ul>
|
||||
</div>
|
||||
|
||||
<div style="margin-left: 225px;">
|
||||
<table id="maingrid" class="table table-bordered table-hover table-striped table-top"></table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="site-tips" style="display: inline-block; height: 210px; width: 340px; padding: 10px; margin-left: 10px; vertical-align: top;" id="demo2-view">
|
||||
<form class="layui-form " action="" id="moduleElements">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
<script src="~/BllScripts/grid.js"></script>
|
||||
<script src="~/BllScripts/assignModuleElement.js"></script>
|
@ -0,0 +1,133 @@
|
||||
// ***********************************************************************
|
||||
// Assembly : OpenAuth.Mvc
|
||||
// Author : yubaolee
|
||||
// Created : 04-19-2016
|
||||
//
|
||||
// Last Modified By : yubaolee
|
||||
// Last Modified On : 05-26-2016
|
||||
// Contact : www.cnblogs.com/yubaolee
|
||||
// File: assignModuleElement.js
|
||||
//Description: 分配模块菜单(按钮)
|
||||
// ***********************************************************************
|
||||
|
||||
$(document).ready(function () {
|
||||
$.CurrentDialog.find("#btnAccess").on("click", function () {
|
||||
var ids = dlgList.getSelectedProperties('Id');
|
||||
if (ids == null) return;
|
||||
|
||||
$.post('/RelevanceManager/Assign', {
|
||||
type: $("#moduleType").val(),
|
||||
firstId: $('#firstId').val(),
|
||||
secIds: ids
|
||||
}, function (json) {
|
||||
json = $.parseJSON(json);
|
||||
if (json.statusCode != "200") {
|
||||
$(this).alertmsg('warn', json.message);
|
||||
return;
|
||||
}
|
||||
dlgList.reload();
|
||||
});
|
||||
});
|
||||
$.CurrentDialog.find("#btnDelAccess").on("click", function () {
|
||||
var ids = dlgList.getSelectedProperties('Id');
|
||||
if (ids == null) return;
|
||||
|
||||
$.post('/RelevanceManager/UnAssign', {
|
||||
type: $("#moduleType").val(),
|
||||
firstId: $('#firstId').val(),
|
||||
secIds: ids
|
||||
}, function (json) {
|
||||
json = $.parseJSON(json);
|
||||
if (json.statusCode != "200") {
|
||||
$(this).alertmsg('warn', json.message);
|
||||
return;
|
||||
}
|
||||
dlgList.reload();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
//grid列表模块
|
||||
function DialogList() {
|
||||
var selectedId = '00000000-0000-0000-0000-000000000000'; //选中的ID
|
||||
var url = '/ModuleElementManager/LoadWithAccess?tId=';
|
||||
this.maingrid = $.CurrentDialog.find('#maingrid').datagrid({
|
||||
showToolbar: false,
|
||||
loadType: 'GET',
|
||||
filterThead: false,
|
||||
target: $(this),
|
||||
columns: [
|
||||
{
|
||||
name: 'Id',
|
||||
label: '元素名称',
|
||||
hide: true
|
||||
},
|
||||
{
|
||||
name: 'Name',
|
||||
label: '元素名称',
|
||||
width: 80
|
||||
},
|
||||
{
|
||||
name: 'ModuleName',
|
||||
label: '所属模块',
|
||||
width: 80
|
||||
},
|
||||
{
|
||||
name: 'Accessed',
|
||||
label: '是否已经授权',
|
||||
align: 'center',
|
||||
items: [{ 'false': '未授权', 'true': '已授权' }],
|
||||
width: 80
|
||||
}
|
||||
],
|
||||
dataUrl: url + selectedId + '&key=' + $('#moduleType').val() + '&firstId=' + $('#firstId').val(),
|
||||
fullGrid: true,
|
||||
showLinenumber: true,
|
||||
showCheckboxcol: true,
|
||||
paging: true,
|
||||
filterMult: false,
|
||||
showTfoot: false,
|
||||
|
||||
});
|
||||
this.reload = function (id) {
|
||||
if (id != undefined) selectedId = id;
|
||||
this.maingrid.datagrid('reload', { dataUrl: url + selectedId + '&key=' + $('#moduleType').val() + '&firstId=' + $('#firstId').val() });
|
||||
}
|
||||
};
|
||||
DialogList.prototype = new Grid();
|
||||
var dlgList = new DialogList();
|
||||
|
||||
var ztree = function () {
|
||||
var setting = {
|
||||
view: { selectedMulti: false },
|
||||
data: {
|
||||
key: {
|
||||
name: 'Name',
|
||||
title: 'Name'
|
||||
},
|
||||
simpleData: {
|
||||
enable: true,
|
||||
idKey: 'Id',
|
||||
pIdKey: 'ParentId',
|
||||
rootPId: 'null'
|
||||
}
|
||||
},
|
||||
callback: { onClick: zTreeOnClick }
|
||||
};
|
||||
|
||||
var url;
|
||||
var type = $("#moduleType");
|
||||
if (type.val() == "UserElement") {
|
||||
url = '/ModuleManager/LoadForUser';
|
||||
} else {
|
||||
url = '/ModuleManager/LoadForRole';
|
||||
}
|
||||
|
||||
$.getJSON(url, { firstId: $("#firstId").val() }, function(json) {
|
||||
var zTreeObj = $.fn.zTree.init($.CurrentDialog.find("#tree"), setting, json);
|
||||
zTreeObj.expandAll(true);
|
||||
});
|
||||
}();
|
||||
function zTreeOnClick(event, treeId, treeNode) {
|
||||
dlgList.reload(treeNode.Id);
|
||||
}
|
Before Width: | Height: | Size: 601 B After Width: | Height: | Size: 601 B |
Before Width: | Height: | Size: 580 B After Width: | Height: | Size: 580 B |
Before Width: | Height: | Size: 570 B After Width: | Height: | Size: 570 B |
Before Width: | Height: | Size: 762 B After Width: | Height: | Size: 762 B |
Before Width: | Height: | Size: 710 B After Width: | Height: | Size: 710 B |
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 432 B |
Before Width: | Height: | Size: 534 B After Width: | Height: | Size: 534 B |
Before Width: | Height: | Size: 529 B After Width: | Height: | Size: 529 B |
Before Width: | Height: | Size: 467 B After Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 45 B After Width: | Height: | Size: 45 B |
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 381 B |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@ -1,7 +1,7 @@
|
||||
/*-------------------------------------
|
||||
zTree Style
|
||||
|
||||
version: 3.5.19
|
||||
version: 3.4
|
||||
author: Hunter.z
|
||||
email: hunter.z@263.net
|
||||
website: http://code.google.com/p/jquerytree/
|
@ -0,0 +1,31 @@
|
||||
<div class="bjui-pageHeader">
|
||||
<div class="bjui-searchBar">
|
||||
<input style="display: none" id="firstId" value="@ViewBag.FirstId" />
|
||||
<input style="display: none" id="moduleType" , value="@ViewBag.ModuleType" />
|
||||
<div class="pull-right">
|
||||
<div class="alert alert-info search-inline">
|
||||
<i class="fa fa-info-circle"></i> 点击行为单选,点击复选框可多选统一授权
|
||||
</div>
|
||||
<button type="button" class="btn btn-green" data-num="1" data-icon="plus" id="btnAccess">
|
||||
授权选中
|
||||
</button>
|
||||
<button type="button" class="btn btn-danger" data-num="1" data-icon="trash" id="btnDelAccess">
|
||||
取消授权
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bjui-pageContent tableContent">
|
||||
<div class="clearfix">
|
||||
<div style="float: left; width: 220px; overflow: auto;" class="table table-bordered">
|
||||
<ul id="tree" class="ztree"></ul>
|
||||
</div>
|
||||
|
||||
<div style="margin-left: 225px;">
|
||||
<table id="maingrid" class="table table-bordered table-hover table-striped table-top"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="~/BllScripts/grid.js"></script>
|
||||
<script src="~/BllScripts/assignModuleElement.js"></script>
|
BIN
Release/Content/BJUI/themes/css/img/diy/6.png
Normal file
After Width: | Height: | Size: 432 B |