Pu Zhibing
2025-02-18 fcb98e91a1e521b895cb58e8ac424f51dfd4e96a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
    <th:block th:include="include :: header('角色数据权限')" />
    <th:block th:include="include :: ztree-css" />
</head>
<body class="white-bg">
    <div class="wrapper wrapper-content animated fadeInRight ibox-content">
        <form class="form-horizontal m" id="form-role-edit" th:object="${role}">
            <input id="roleId" name="roleId" type="hidden" th:field="*{roleId}"/>
            <div class="form-group">
                <label class="col-sm-3 control-label">角色名称:</label>
                <div class="col-sm-8">
                    <input class="form-control" type="text" name="roleName" id="roleName" th:field="*{roleName}" readonly="true"/>
                </div>
            </div>
            <div class="form-group">
                <label class="col-sm-3 control-label">权限字符:</label>
                <div class="col-sm-8">
                    <input class="form-control" type="text" name="roleKey" id="roleKey" th:field="*{roleKey}" readonly="true">
                </div>
            </div>
            <div class="form-group">
                <label class="col-sm-3 control-label">数据范围:</label>
                <div class="col-sm-8">
                    <select id="dataScope" name="dataScope" class="form-control m-b">
                        <option value="1" th:field="*{dataScope}">全部数据权限</option>
                        <option value="2" th:field="*{dataScope}">自定义数据权限</option>
                        <option value="3" th:field="*{dataScope}">本部门数据权限</option>
                        <option value="4" th:field="*{dataScope}">本部门及以下数据权限</option>
                        <option value="5" th:field="*{dataScope}">仅本人数据权限</option>
                    </select>
                    <span class="help-block m-b-none"><i class="fa fa-info-circle"></i> 特殊情况下,设置为“自定数据权限”</span>
                </div>
            </div>
            <div class="form-group" id="authDataScope" th:style="'display:' + @{(*{dataScope=='2'} ? 'block' : 'none')} + ''">
                <label class="col-sm-3 control-label">数据权限:</label>
                <div class="col-sm-8">
                    <label class="check-box">
                        <input type="checkbox" value="1" checked>展开/折叠</label>
                    <label class="check-box">
                        <input type="checkbox" value="2">全选/全不选</label>
                    <label class="check-box">
                        <input type="checkbox" value="3" checked>父子联动</label>
                    <div id="deptTrees" class="ztree ztree-border"></div>
                </div>
            </div>
        </form>
    </div>
    <th:block th:include="include :: footer" />
    <th:block th:include="include :: ztree-js" />
    <script type="text/javascript">
    
        $(function() {
            var url = ctx + "system/role/deptTreeData?roleId=" + $("#roleId").val();
            var options = {
                id: "deptTrees",
                url: url,
                check: { enable: true, nocheckInherit: true, chkboxType: { "Y": "ps", "N": "ps" } },
                expandLevel: 2
            };
            $.tree.init(options);
        });
        
        $('input').on('ifChanged', function(obj){
            var type = $(this).val();
            var checked = obj.currentTarget.checked;
            if (type == 1) {
                if (checked) {
                    $._tree.expandAll(true);
                } else {
                    $._tree.expandAll(false);
                }
            } else if (type == "2") {
                if (checked) {
                    $._tree.checkAllNodes(true);
                } else {
                    $._tree.checkAllNodes(false);
                }
            } else if (type == "3") {
                if (checked) {
                    $._tree.setting.check.chkboxType = { "Y": "ps", "N": "ps" };
                } else {
                    $._tree.setting.check.chkboxType = { "Y": "", "N": "" };
                }
            }
        })
 
        function submitHandler() {
            if ($.validate.form()) {
                edit();
            }
        }
        
        function edit() {
            var roleId = $("input[name='roleId']").val();
            var roleName = $("input[name='roleName']").val();
            var roleKey = $("input[name='roleKey']").val();
            var dataScope = $("#dataScope").val();
            var deptIds = $.tree.getCheckedNodes();
            $.ajax({
                cache : true,
                type : "POST",
                url : ctx + "system/role/authDataScope",
                data : {
                    "roleId": roleId,
                    "roleName": roleName,
                    "roleKey": roleKey,
                    "dataScope": dataScope,
                    "deptIds": deptIds
                },
                async : false,
                error : function(request) {
                    $.modal.alertError("系统错误");
                },
                success : function(data) {
                    $.operate.successCallback(data);
                }
            });
        }
        
        $("#dataScope").change(function(event){
            var dataScope = $(event.target).val();
            dataScopeVisible(dataScope);
        });
        
        function dataScopeVisible(dataScope) {
            if (dataScope == 2) {
                $("#authDataScope").show();
            } else {
                $._tree.checkAllNodes(false);
                $("#authDataScope").hide();
            }
        }
    </script>
</body>
</html>