懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
layui.use(['table','ax', 'func'], function () {
    var $ = layui.$;
    var table = layui.table;
    var $ax = layui.ax;
    var func = layui.func;
 
    /**
     * 管理
     */
    var Procdef = {
        tableId: "procdefTable"
    };
 
    /**
     * 初始化表格的列
     */
    Procdef.initColumn = function () {
        return [[
            {type: 'checkbox'},
            {type: "numbers", align: "center", title: '序号'},
            {field: 'id', hide: true},
            {field: 'deploymentId', hide: true},
            {field: 'name', sort: true, align: "center", title: '名称'},
            {field: 'key', sort: true, align: "center", title: '流程定义KEY'},
            {
                field: 'version', sort: true, align: "center", title: '版本', templet: function (d) {
                    return 'v.' + d.version;
                }
            },
            {field: 'deployTime', sort: true, align: "center", title: '部署时间'},
            {field: 'resourceName', sort: true, align: "center", title: '流程bpmn文件名称'},
            {field: 'dgrmResourceName', sort: true, align: "center", title: '流程图片名称'},
            {
                field: 'suspensionState', sort: true, align: "center", title: '状态', templet: function (d) {
                    if (d.suspensionState === 1) {
                        return "<span style='color: #5FB878;'>已激活</span>";
                    } else {
                        return "<span style='color: #fe7300;'>已挂起</span>";
                    }
                }
            },
            {align: 'center', toolbar: '#tableBar', title: '操作', minWidth: 380}
        ]];
    };
 
    /**
     * 点击查询按钮
     */
    Procdef.search = function () {
        var queryData = {};
        queryData['keywords'] = $("#keywords").val();
        table.reload(Procdef.tableId, {
            where: queryData, page: {curr: 1}
        });
    };
 
    /**
     * 导入流程
     */
    Procdef.openAddDlg = function () {
        func.open({
            title: '导入流程',
            content: Feng.ctxPath + '/process/add',
            tableId: Procdef.tableId,
            height: 250
        });
    };
 
    /**
     * 映射模型
     */
    Procdef.map = function (data) {
        var ajax = new $ax(Feng.ctxPath + "/model/saveModelFromPro", function (data) {
            Feng.success("映射成功!");
        }, function (data) {
            Feng.error("映射失败!" + data.responseJSON.message)
        });
        ajax.set("processDefinitionId", data.id);
        ajax.start();
    };
 
    /**
     * 下载模型
     */
    Procdef.download = function (data) {
        window.location.href = Feng.ctxPath + '/process/download?deploymentId=' + data.deploymentId;
    };
 
    /**
     * 挂起或者激活
     */
    Procdef.hangActive = function (data, status) {
        var ajax = new $ax(Feng.ctxPath + "/process/onoffPro", function (data) {
            if (status === 1) {
                Feng.success("激活成功!");
            } else {
                Feng.success("挂起成功!");
            }
            table.reload(Procdef.tableId);
        }, function (data) {
            if (status === 1) {
                Feng.error("激活失败!" + data.responseJSON.message)
            } else {
                Feng.error("挂起失败!" + data.responseJSON.message)
            }
        });
        ajax.set("id", data.id);
        ajax.set("status", status);
        ajax.start();
    };
 
    /**
     * 点击删除
     *
     * @param data 点击按钮时候的行数据
     */
    Procdef.delete = function (data) {
        var operation = function () {
            var ajax = new $ax(Feng.ctxPath + "/process/delete", function (data) {
                Feng.success("删除成功!");
                table.reload(Procdef.tableId);
            }, function (data) {
                Feng.error("删除失败!" + data.responseJSON.message + "!");
            });
            ajax.set("deploymentId", data.deploymentId);
            ajax.start();
        };
        Feng.confirm("是否删除?", operation);
    };
 
    // 渲染表格
    table.render({
        elem: '#' + Procdef.tableId,
        url: Feng.ctxPath + '/process/list',
        page: true,
        height: "full-158",
        cellMinWidth: 100,
        cols: Procdef.initColumn()
    });
 
    // 搜索按钮点击事件
    $('#btnSearch').click(function () {
        Procdef.search();
    });
 
    // 添加按钮点击事件
    $('#btnAdd').click(function () {
        Procdef.openAddDlg();
    });
 
    // 工具条点击事件
    table.on('tool(' + Procdef.tableId + ')', function (obj) {
        var data = obj.data;
        var layEvent = obj.event;
 
        if (layEvent === 'map') {
            Procdef.map(data);
        } else if (layEvent === 'download') {
            Procdef.download(data);
        } else if (layEvent === 'hangup') {
            Procdef.hangActive(data, 2);
        } else if (layEvent === 'active') {
            Procdef.hangActive(data, 1);
        } else if (layEvent === 'delete') {
            Procdef.delete(data);
        }
    });
});