You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.6 KiB
Plaintext
59 lines
2.6 KiB
Plaintext
<%@ Page Title="用户角色管理" Language="C#" MasterPageFile="~/Areas/SoftMng/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="Head" runat="server">
|
|
<!--扩展js包-->
|
|
<link href="/Areas/SoftMng/Content/zTree-3.5.29/css/bootstrapStyle/bootstrapStyle.css" rel="stylesheet" />
|
|
<script src="/Areas/SoftMng/Content/zTree-3.5.29/js/jquery.ztree.core.js"></script>
|
|
<script src="/Areas/SoftMng/Content/zTree-3.5.29/js/jquery.ztree.excheck.js"></script>
|
|
<style>
|
|
.row .ztree {
|
|
height: 490px;
|
|
overflow-y: auto;
|
|
border: 3px dashed #ccc;
|
|
padding: 2px;
|
|
}
|
|
.action-move {
|
|
list-style: none;
|
|
position: relative;
|
|
top: 220px;
|
|
right: 20px;
|
|
display: none;
|
|
}
|
|
.action-move > li{
|
|
margin-bottom:20px;
|
|
}
|
|
</style>
|
|
</asp:Content>
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="Bread" runat="server">
|
|
用户角色管理
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="Body" runat="server">
|
|
<div class="gray-bg">
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
<div class="row">
|
|
<div class="col-sm-5">
|
|
<h5>组织/用户</h5>
|
|
<ul class="ztree" id="treeview"></ul>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<h5>系统角色</h5>
|
|
<ul class="ztree" id="roleview"></ul>
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<ul class="action-move">
|
|
<li><button class="btn btn-success btn-sm" type="button" data-action="add" data-toggle="tooltip" data-placement="bottom" title="添加模块"><i class="icon-circle-arrow-right icon-2x"></i></button></li>
|
|
<li><button class="btn btn-danger btn-sm" type="button" data-action="del" data-toggle="tooltip" data-placement="bottom" title="移除模块"><i class="icon-circle-arrow-left icon-2x"></i></button></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<h5>已选角色</h5>
|
|
<ul class="ztree" id="userroleview"></ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--自定义js文件-->
|
|
<%-- <script type="text/javascript" src="/Areas/SoftMng/Viewsjs/Auth/Index.min.js"></script>--%>
|
|
<script type="text/javascript" src="/Areas/SoftMng/Viewsjs/Auth/userrole_source_by_zxb_24d7a12c-df2d-423b-98d7-163919c03352.js"></script>
|
|
</asp:Content>
|