Files
wehub-resource-sync a21fa4e11b
Go / Build (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:30:21 +08:00

55 lines
2.6 KiB
Go

<div class="container-fluid">
<div id="failedBox" class="hide"></div>
<div class="panel panel-default">
<div class="panel-body">
<form class="form-horizontal" method="post" action="/system/role/grantPrivilege">
<input type="hidden" name="role_id" value="{{.role.role_id}}" />
<h4><span class="label label-default">{{$.role.name}}权限</span> </h4>
<hr>
{{range $menu := $.menus}}
<ul class="list-group w240 inline-group">
<li class="list-group-item"><strong>{{$menu.name}}</strong> <span class="pull-right"><input name="privilege_id" type="checkbox" data-type="menu" value="{{$menu.privilege_id}}" onclick="Role.privilege(this)" /></span></li>
{{range $controller := $.controllers}}
{{if eq $controller.parent_id $menu.privilege_id}}
<li class="list-group-item">{{$controller.name}}<span class="pull-right"><input name="privilege_id" type="checkbox" data-type="controller" value="{{$controller.privilege_id}}" onclick="Role.privilege(this)" /></span></li>
{{end}}
{{end}}
</ul>
{{end}}
<div class="form-group">
<div class="col-md-8" style="margin-left:10px;">
<button type="button" onclick="Form.ajaxSubmit(this.form, true)" class="btn btn-primary">保存</button>
</div>
</div>
</form>
</div>
</div>
</div>
<script type="text/javascript" src="/static/js/modules/system/role.js"></script>
<script type="text/javascript">
<!--
var navigators = [];
var menus = [];
var controllers = [];
var defaultPrivileges = [];
var disabledPrivilegeIds = [];
{{range $menu := .menus }}
menus.push({'privilegeId':'{{$menu.privilege_id}}', 'name':'{{$menu.name}}', 'parentId':'{{$menu.parent_id}}', 'type':'{{$menu.type}}'});
{{end}}
{{range $controller := .controllers }}
controllers.push({'privilegeId':'{{$controller.privilege_id}}', 'name':'{{$controller.name}}', 'parentId':'{{$controller.parent_id}}', 'type':'{{$controller.type}}'});
{{end}}
{{range $rolePrivilege := .rolePrivileges}}
defaultPrivileges.push(parseInt({{$rolePrivilege.privilege_id}}));
{{end}}
{{range $disabledPrivilegeId := .disabledPrivilegeIds}}
disabledPrivilegeIds.push(parseInt({{$disabledPrivilegeId}}));
{{end}}
Role.defaults(defaultPrivileges, disabledPrivilegeIds);
//-->
</script>