mitao
2024-06-06 3d2b51ea4520533de5e78f88dddf5b5c7dce4247
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
 @layout("/common/_container.html"){
 <div class="ibox float-e-margins" xmlns="http://www.w3.org/1999/html">
    <div class="ibox-content">
        <div class="form-horizontal" id="roleInfoForm">
            <input type="hidden" id="id" value="${role.id}">
            <div class="row">
                <div class="col-sm-12">
                    <div class="col-sm-offset-1 checkbox i-checks">
                        <p>
                            <label>
                                <input type="checkbox" value="1" name="systemNoticeType"> <i></i> 营销员入司审核通知
                            </label>
                        </p>
                        <p>
                            <label>
                                <input type="checkbox" value="2" name="systemNoticeType"> <i></i> 职级佣金系数修改审核
                            </label>
                        </p>
                        <p>
                            <label>
                                <input type="checkbox" value="5" name="systemNoticeType"> <i></i> 人员职级晋升维持参数修改审核
                            </label></p>
                        <p>
                            <label>
                                <input type="checkbox" value="8" name="systemNoticeType"> <i></i> 城市管理员修改商品销售价通知
                            </label>
                        </p>
                    </div>
                </div>
            </div>
 
            <div class="row btn-group-m-t">
                <div class="col-sm-10 col-sm-offset-4">
                    <#button btnCss="info" name="确定" id="ensure" icon="fa-check" clickFun="RolInfoDlg.editSubmit()"/>
                </div>
            </div>
        </div>
    </div>
</div>
<script src="${ctxPath}/static/modular/system/role/role_info.js"></script>
 <script type="text/javascript">
     $(function () {
         // 复选框-填充赋值
         Feng.fillCheckboxVal('systemNoticeType', '${role.systemNoticeType!}');
     });
 </script>
@}