xiaoyong931011
2021-06-17 4c902d9c20dd965d1ec832760809c622d1df9aac
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
<div class="layui-fluid layui-anim febs-anim" id="febs-user" lay-title="类型列表">
    <div class="layui-row febs-container">
        <div class="layui-col-md12">
            <div class="layui-card">
                <div class="layui-card-body febs-table-full">
                    <form class="layui-form layui-table-form" lay-filter="user-table-form">
                            <div class="layui-row">
                                <div class="layui-col-md2 layui-col-sm12 layui-col-xs12 table-action-area">
                                    <div class="layui-btn layui-btn-sm layui-btn-primary febs-button-green-plain table-action" id="add">
                                        新增
                                    </div>
                                    <div class="layui-btn layui-btn-sm layui-btn-primary febs-button-green-plain table-action" id="reset">
                                        <i class="layui-icon">&#xe79b;</i>
                                    </div>
                                </div>
                            </div>
                        </form>
                    <table lay-filter="userTable" lay-data="{id: 'userTable'}"></table>
                </div>
            </div>
        </div>
    </div>
</div>
 
<!-- 表格操作栏 start -->
<script type="text/html" id="user-option">
    <span shiro:lacksPermission="user:view,user:update,user:delete">
        <span class="layui-badge-dot febs-bg-orange"></span> 无权限
    </span>
    <a lay-event="edit" shiro:hasPermission="user:update">编辑
        <i class="layui-icon febs-edit-area febs-blue"></i>
     </a>
    <a lay-event="delete" shiro:hasPermission="user:update">删除
        <i class="layui-icon febs-edit-area febs-blue"></i>
     </a>
</script>
<!-- 表格操作栏 end -->
<script data-th-inline="none" type="text/javascript">
    // 引入组件并初始化
    layui.use(['jquery', 'form', 'table', 'febs'], function () {
        var $ = layui.jquery,
            febs = layui.febs,
            form = layui.form,
            table = layui.table,
            $view = $('#febs-user'),
            $add = $view.find('#add'),
            $reset = $view.find('#reset'),
            $searchForm = $view.find('form'),
            tableIns
            ;
 
        form.render();
 
        // 表格初始化
        initTable();
 
        // 初始化表格操作栏各个按钮功能
        table.on('tool(userTable)', function (obj) {
            var data = obj.data,
                layEvent = obj.event;
            
            if (layEvent === 'delete') {
                febs.modal.confirm('删除', '您是否确认删除?', function () {
                    deleteUsers(data.id);
                });
            }
        });
        
        function deleteUsers(id) {
            febs.get(ctx + 'helpCenter/helpCenterTypeDelete/' + id, null, function () {
                febs.alert.success('删除成功');
                $reset.click();
            });
        }
        
         // 刷新按钮
        $reset.on('click', function () {
            tableIns.reload({where: getQueryParams(), page: {curr: 1}});
        });
         // 获取查询参数
        function getQueryParams() {
            return {};
        }
        
        $add.on('click', function () {
            febs.modal.open('新增', 'modules/helpCenter/helpCenterTypeAdd/', {
                btn: ['提交', '取消'],
                yes: function (index, layero) {
                    $('#user-add').find('#submit').trigger('click');
                },
                btn2: function () {
                    layer.closeAll();
                }
            });
        });
 
         
        function initTable() {
            tableIns = febs.table.init({
                elem: $view.find('table'),
                id: 'userTable',
                url: ctx + 'helpCenter/getHelpCenterTypeList',
                cols: [[
                    {field: 'type', title: '类型标识', minWidth: 200,align:'left'},
                    {field: 'content', title: '类型内容', minWidth: 200,align:'left'},
                    {field: 'contentUs', title: '类型内容(英文)', minWidth: 200,align:'left'},
                    {field: 'status', title: '所属类别',
                        templet: function (d) {
                            if (d.status === 1) {
                                return '<span style="color:green;">帮助中心类别</span>'
                            } else{
                                return ''
                            }
                        }, minWidth: 80,align:'center'},
                    {title: '操作', 
                        templet: function (d) {
                                return '<a lay-event="delete" shiro:hasPermission="user:update">删除</a>'
                        },minWidth: 200,align:'center'}
                ]]
            });
        }
    })
</script>