lyg
2025-03-04 72bbec1590f85974d369ce7aeaa05be8905672a0
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
layui.define(['tool','oaPicker'], function (exports) {
    const layer = layui.layer;
    const form = layui.form;
    const tool = layui.tool;
    const opts={
        "checkBox":"checkBox",//审核容器id
        "check_copy": 1,//是否需要操送人
        "check_name": "",//审核类型标识
        "check_btn":1,//是否显示提交审核按钮
        "check_back":0,//是否支持反确认审核操作
        "checking_btn":''//待审核状态下添加的按钮
    };
    const obj = {
        loading:false,
        checkStatus: function (status) {
            statusArray = ['待提交审批','审批中','审批通过','审批不通过','已撤回'];
            return '<span class="check-status-color-'+status+'">'+statusArray[status]+'</span>';
        },
        statusTemplate: function (status) {
            let me = this;
            let tem =`
                <tr>
                    <td class="layui-td-gray">审批状态</td>
                    <td>${me.checkStatus(status)}</td>
                </tr>
            `;
            return tem;
        },
        uidsTemplate: function () {
            let tem =`
                <td class="layui-td-gray">审批人<font>*</font></td>
                <td>
                    <input type="text" name="check_uames" value="" autocomplete="off" placeholder="请选择审批人" lay-verify="required" lay-reqText="请选择审批人" class="layui-input picker-admin" readonly><input type="text" name="check_uids" value="" readonly style="display:none;">
                </td>
            `;
            return tem;
        },
        flowTemplate: function (data) {
            let flowtype='<option value="" title="">--请选择--</option>';
            if(data && data.length>0){
                for(let i=0;i<data.length;i++){
                    flowtype+='<option value="'+data[i].id+'" title="'+data[i].check_type+'">'+data[i].title+'</option>';
                }                
            }
            let tem =`
                <tr>
                    <td class="layui-td-gray">审批流程<font>*</font></td>
                    <td>
                        <select name="flow_id" lay-verify="required" lay-filter="flowtype" lay-reqText="请选择审批流程">
                        ${flowtype}
                        </select>
                    </td>
                </tr>
            `;
            return tem;
        },
        copyTemplate: function () {
            let me = this;
            let tem =`
            <tr>
                <td class="layui-td-gray">抄送人</td>
                <td>
                    <input type="text" name="check_copy_unames" value="" readonly autocomplete="off" placeholder="请选择审批通过后的抄送人" class="layui-input picker-admin" data-type="2"><input type="text" name="check_copy_uids" value="" readonly style="display:none;">
                </td>
            </tr>
            `;
            if(me.sets.check_copy == 1){
                return tem;
            }else{
                return '';
            }            
        },
        btnTemplate: function () {
            let me = this;
            let tem =`
            <div class="pt-3">
                <button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="checkform">提交审批</button>
                <button type="reset" class="layui-btn layui-btn-primary">重置</button>
                ${me.sets.checking_btn}
            </div>
            `;            
            if(me.sets.check_btn == 1){
                return tem;
            }else{
                return '';
            }            
        },
        recordTemplate: function (record) {
            let me = this;
            let tem ='';
            if(record.length>0){
                tem+='<tr><td class="layui-td-gray">审批记录</td><td colspan="5"><ul class="layui-timeline flow-record pt-2">';
                for(let l=0;l<record.length;l++){
                    tem+='<li class="layui-timeline-item delete-'+record[l].delete_time+'">\
                                <i class="layui-icon layui-timeline-axis">&#xe63f;</i>\
                                <p style="padding-left:24px">'+record[l].check_time_str+'<span class="black ml-2">'+record[l].name+'</span><span class="check-status-color-'+(record[l].check_status+1)+'">『'+record[l].status_str+'』</span>了此申请。审批意见:<span class="green">'+record[l].content+'。</span></p>\
                            </li>';
                }        
                tem+='</ul></td></tr>';    
            }
            return tem;        
        },
        createTemplate: function (flow) {
            let me = this;
            let checkHtml = `
                <form class="layui-form">
                    <h3 class="pb-2">审批操作</h3>
                    <table class="layui-table layui-table-form">
                        ${me.flowTemplate(flow)}
                        <tr id="checkTR">${me.uidsTemplate()}</tr>
                        ${me.copyTemplate()}
                    </table>
                </form>
            `;
            return checkHtml;
        },
        //审批待提交模版
        initTemplate: function (detail) {
            let me = this;
            let checkHtml = `
                <form class="layui-form">
                    <h3 class="pb-2">审批操作</h3>
                    <table class="layui-table layui-table-form">
                        ${me.statusTemplate(detail.check_status)}
                        ${me.recordTemplate(detail.check_record)}
                        ${me.flowTemplate(detail.flow)}
                        <tr id="checkTR">${me.uidsTemplate()}</tr>
                        ${me.copyTemplate()}
                    </table>
                    ${me.btnTemplate()}
                </form>
            `;
            let viewHtml = `
                <form class="layui-form">
                    <h3 class="pb-2">审批操作</h3>
                    <table class="layui-table layui-table-form">
                        ${me.statusTemplate(detail.check_status)}
                        ${me.recordTemplate(detail.check_record)}
                    </table>
                </form>
            `;
            if(detail.is_creater==1){
                return checkHtml;
            }
            else{
                return viewHtml;
            }
        },
        //审批中模版
        checkTemplate: function (detail) {
            let me = this,flowHtml='',list = detail.nodes;
            for(var f=0;f<list.length;f++){
                //审批流程
                let checkUser = '',
                iconRight ='<span class="layui-icon layui-icon-right"></span>',
                iconStatus ='<i class="layui-icon layui-icon-time"></i>',
                strStatus ='<div class="check-item-status">待审批</div>',
                check_types= '',
                sortClass ='';
                if(f == list.length-1){
                    iconRight ='';
                }
                if(detail.check_step_sort == list[f].sort){
                    sortClass ='flow-this';
                    iconStatus ='<i class="layui-icon layui-icon-time"></i>';
                    strStatus ='<div class="check-item-status">当前审批</div>';
                    if(list[f].check_uids_info.length>1){
                        check_types= ' <span class="layui-badge layui-bg-blue">会签</span>';
                        if(list[f].check_types==2){
                            check_types= ' <span class="layui-badge layui-bg-orange">或签</span>';
                        }
                    }
                }
                if(list[f].check_role == 0 || list[f].check_role == 5){
                    checkUser=list[f].check_uids_info[0].name;
                }
                if(list[f].check_role == 1 || list[f].check_role == 2 || list[f].check_role == 3  || list[f].check_role == 4){
                    checkUser=list[f].flow_name;
                }    
                if(list[f].check_list.length>0){
                    let one=0,two=0,three=0;
                    for(var m=0;m<list[f].check_uids_info.length;m++){
                        if(list[f].check_uids_info[m].check_status == 2){
                            three++
                        }
                        if(list[f].check_uids_info[m].check_status == 1){
                            two++
                        }
                        if(list[f].check_uids_info[m].check_status == 0){
                            one++
                        }
                    }
                    //会签
                    if(list[f].check_types==1){
                        if(three > 0){
                            iconStatus ='<i class="layui-icon layui-icon-close" data-no=""></i>';
                            strStatus ='<div class="check-item-status">拒绝</div>';
                        }
                        else{
                            if(one > 0){
                                iconStatus ='<i class="layui-icon layui-icon-time"></i>';
                                strStatus ='<div class="check-item-status">待审批</div>';
                            }
                            else{
                                iconStatus ='<i class="layui-icon layui-icon-ok-circle" data-ok=""></i>';
                                strStatus ='<div class="check-item-status">通过</div>';    
                            }
                        }
                    }
                    //或签
                    if(list[f].check_types==2){
                        if(two > 0){
                            iconStatus ='<i class="layui-icon layui-icon-ok-circle" data-ok=""></i>';
                            strStatus ='<div class="check-item-status">通过</div>';
                        }
                        else{
                            iconStatus ='<i class="layui-icon layui-icon-close" data-no=""></i>';
                            strStatus ='<div class="check-item-status">拒绝</div>';
                        }
                    }
                }
                flowHtml+= '<div class="flow-flexbox check-item flow-flex-row '+sortClass+'" id="flow'+f+'">'+iconStatus+'<div class="check-item-name">'+check_types+checkUser+'</div>'+strStatus+iconRight+'</div>';
            }            
            
            let checkCopy='<tr><td class="layui-td-gray">抄送人</td><td colspan="3">'+detail.copy_unames+'</td></tr>';
            
            let checkNode = `<tr>
                    <td class="layui-td-gray">审批节点 <font>*</font></td>
                    <td colspan="3">
                        <input type="radio" name="check_node" lay-filter="check_node" value="1" title="审批结束">
                        <input type="radio" name="check_node" lay-filter="check_node" value="2" title="下一审批人">
                        <div class="layui-inline">
                            <input type="text" name="check_uname" value="" readonly autocomplete="off" placeholder="请选择下一审批人" lay-verify="required" lay-reqText="请选择下一审批人" class="layui-input picker-admin"><input type="hidden" name="check_uids" value="">
                        </div>                
                    </td>
                </tr>
                `;
                
            let checkContent = `<tr>
                            <td class="layui-td-gray">审批意见 <font>*</font></td>
                            <td colspan="3">
                                <textarea name="content" placeholder="请输入审批意见" class="layui-textarea"></textarea>
                            </td>
                    </tr>`;
                
            let btnCheck='<span class="layui-btn layui-btn-normal btn-check" data-status="1"><i class="layui-icon layui-icon-ok"></i> 通过</span><span class="layui-btn layui-btn-danger btn-check" data-status="2"><i class="layui-icon layui-icon-close"></i> 拒绝</span>';
            
            if(detail.step.check_role==5){
                btnCheck='<span class="layui-btn layui-btn-normal btn-check" data-status="1"><i class="layui-icon layui-icon-ok"></i> 通过</span><span class="layui-btn layui-btn-danger btn-check" data-status="2"><i class="layui-icon layui-icon-close"></i> 退回</span>';
            }
            
            let btnBack='<span class="layui-btn layui-btn-primary btn-check" data-status="3"><i class="layui-icon layui-icon-reduce-circle"></i> 撤回</span>';
            let btnCheckBack='<span class="layui-btn layui-btn-danger btn-check" data-event="check" data-status="4">反确认审核</span>';
            
            let checkHtml = `
                <form class="layui-form">
                <h3 class="pb-2">审批操作</h3>
                    <table class="layui-table layui-table-form">
                        <tr>
                            <td class="layui-td-gray">审批状态</td>
                            <td>${me.checkStatus(detail.check_status)}</td>
                            <td class="layui-td-gray-2">当前审批人</td>
                            <td>${detail.check_unames}</td>
                        </tr>
                        ${me.sets.check_copy == 1 ? checkCopy : ""}
                        <tr>
                            <td class="layui-td-gray">审批流</td>
                            <td colspan="3">
                                <div class="flow-flexbox check-items flow-flex-row" id="flowList">
                                    <div class="flow-flexbox check-item flow-flex-row">
                                        <i class="layui-icon layui-icon-add-circle" data-ok=""></i>
                                        <div class="check-item-name">${detail.admin_name}</div>
                                        <div class="check-item-status">创建</div>
                                        <span class="layui-icon layui-icon-right"></span>
                                    </div>
                                    ${flowHtml}
                                </div>
                            </td>
                        </tr>
                        ${me.recordTemplate(detail.check_record)}
                        ${detail.is_checker==1 && detail.step.check_role==0?checkNode:''}
                        ${detail.is_checker==1?checkContent:''}
                    </table>
                    <div class="pt-3">
                        <input type="hidden" name="check_role" value="${detail.step.check_role}">
                        ${detail.is_checker==1?btnCheck:''}
                        ${detail.is_creater==1 && (detail.check_status==1 || detail.check_status==3)?btnBack:''}
                        ${me.sets.check_back == 1 && detail.check_status==2?btnCheckBack:''}                        
                    </div>
                </form>
            `;
            return checkHtml;
        },
        //审批撤回模版
        backTemplate: function (detail) {
            let me = this;
            let btnHtml ='';
            if(me.sets.check_btn == 1){
                btnHtml ='<div class="pt-3"><button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="checkform">提交审批</button><button type="reset" class="layui-btn layui-btn-primary">重置</button></div>';
            }
            let checkHtml = `
                <form class="layui-form">
                    <h3 class="pb-2">审批操作</h3>
                    <table class="layui-table layui-table-form">
                        ${me.statusTemplate(detail.check_status)}
                        ${me.recordTemplate(detail.check_record)}
                        ${me.flowTemplate(detail.flow)}
                        <tr id="checkTR">${me.uidsTemplate()}</tr>
                        ${me.copyTemplate()}
                    </table>
                    ${me.btnTemplate()}
                </form>
            `;
            let viewHtml = `
                <form class="layui-form">
                    <h3 class="pb-2">审批操作</h3>
                    <table class="layui-table layui-table-form">
                        ${me.statusTemplate(detail.check_status)}
                        ${me.recordTemplate(detail.check_record)}
                    </table>
                </form>
            `;
            if(detail.is_creater==1){
                return checkHtml;
            }
            else{
                return viewHtml;
            }
        },
        submit:function(data,callback){
            tool.post("/api/check/submit_check", data, callback);
        },
        init: function (options) {
            this.sets = $.extend({}, opts, options);
            let me = this;
            let checkBox = $('#'+me.sets.checkBox);
            let action_id = checkBox.data('id');
            let check_status = checkBox.data('status');
            let check_flow_id = checkBox.data('checkflowid');
            if(action_id === undefined || check_status === undefined || check_flow_id === undefined){
                return false;
            }
            //获取审批信息
            $.ajax({
                url: "/api/check/get_flow_nodes",
                type:'get',
                data:{check_name:me.sets.check_name,action_id:action_id,flow_id:check_flow_id},
                success: function (e) {
                    if (e.code == 0) {
                        if(check_status==0){
                            if(action_id==0){
                                checkBox.append(me.createTemplate(e.data));
                            }
                            else{
                                checkBox.append(me.initTemplate(e.data));
                            }
                        }
                        else if(check_status==4){
                            checkBox.append(me.backTemplate(e.data));
                        }
                        else{
                            checkBox.append(me.checkTemplate(e.data));
                        }
                        form.render();
                    }
                }
            })
            
            //选择审批流
            form.on('select(flowtype)', function(data){
                var check_type = data.elem[data.elem.selectedIndex].title;
                if(data.value==''){
                    $('#checkTR').html(me.uidsTemplate());
                    checkBox.find('[name="check_copy_unames"]').val('');
                    checkBox.find('[name="check_copy_uids"]').val('');
                    form.render();
                    return false;
                }
                if(check_type == 1){
                    $('#checkTR').html(me.uidsTemplate());
                    form.render();
                }
                $.ajax({
                    url: "/api/check/get_flow_users",
                    type:'get',
                    data:{id:data.value},
                    success: function (e) {
                        if (e.code == 0) {
                            var flow_li='',flow_idx=0;
                            var flow_data = e.data.flow_data;
                            if(e.data.copy_uids && e.data.copy_uids !='' && me.sets.check_copy==1){
                                checkBox.find('[name="check_copy_unames"]').val(e.data.copy_unames);
                                checkBox.find('[name="check_copy_uids"]').val(e.data.copy_uids.split(','));
                            }
                            if(check_type == 2 || check_type == 3){
                                for(var a=0;a<flow_data.length;a++){
                                    var check_types = '',check_role = '',user_li='';
                                    if(flow_data[a].check_types==1){
                                        check_types= ' <span class="layui-badge layui-bg-blue">会签</span>';
                                    }
                                    if(flow_data[a].check_types==2){
                                        check_types= ' <span class="layui-badge layui-bg-orange">或签</span>';
                                    }
                                    
                                    if(flow_data[a].check_role==1){
                                        check_role = '当前部门负责人';
                                    }
                                    if(flow_data[a].check_role==2){
                                        check_role = '上级部门负责人';
                                    }
                                    if(flow_data[a].check_role==3){
                                        check_role = '岗位职称:'+flow_data[a].check_position;
                                    }
                                    if(flow_data[a].check_role==4){
                                        check_role = '指定人员';
                                    }
                                    if(flow_data[a].check_role==5){
                                        check_role = flow_data[a].flow_name;
                                        check_types= ' <span class="layui-badge layui-bg-green">可回退</span>';
                                    }
                                    let check_uids_info=flow_data[a].check_uids_info;
                                    if(check_uids_info.length>0){
                                        flow_idx++;
                                        for(var b=0;b<check_uids_info.length;b++){
                                            user_li+= '<li style="padding:3px 0;line-height:22px"><img src="'+check_uids_info[b].thumb+'" style="width:22px; height:22px; border-radius:50%; vertical-align: bottom; margin-right:8px;" />'+check_uids_info[b].name+'</li>';
                                        }
                                        flow_li+='<li class="layui-timeline-item" style="padding-bottom:5px;">\
                                            <i class="layui-icon layui-timeline-axis">&#xe63f;</i>\
                                            <div class="layui-timeline-content">\
                                              <p class="layui-timeline-title" style="margin-bottom:3px">第'+flow_idx+'级审批『'+check_role+'』'+check_types+'</p>\
                                              <ul>'+user_li+'</ul>\
                                            </div>\
                                        </li>';
                                    }
                                }                            
                                formHtml = '<td class="layui-td-gray">审批流</td>\
                                            <td>\
                                                <ul id="flowList" class="layui-timeline">'+flow_li+'</ul>\
                                            </td>';
                                $('#checkTR').html(formHtml);
                            }
                        }
                    }
                })
            });
            
            //提交审批
            form.on('submit(checkform)', function(data){
                data.field.action_id = action_id;
                data.field.check_name = me.sets.check_name;
                let callback = function (e) {
                    layer.msg(e.msg);
                    if (e.code == 0) {
                        tool.sideClose(1000);                
                    }
                }
                tool.post("/api/check/submit_check", data.field, callback);
                return false;
            });
            
            //审批操作按钮
            checkBox.on('click','.btn-check', function(data){
                let content=checkBox.find('[name="content"]').val();
                let check_status=$(this).data('status');
                let check_role = checkBox.find('input[name="check_role"]').val();
                
                let check_node=0,check_uids='';
                if(check_role == 0 && check_status==1){
                    check_node = checkBox.find('input[name="check_node"]:checked').val();
                    check_uids = checkBox.find('input[name="check_uids"]').val();
                    if(!check_node){
                        layer.msg('请选择下一审批节点');
                        return false;
                    }
                    if(check_node == 2 && check_uids==''){
                        layer.msg('请选择下一审批人');
                        return false;
                    }
                }
                if(check_status ==1 || check_status==2){
                    if(content==''){
                        layer.msg('请输入审批意见');
                        return false;
                    }
                    let confirmTips='确定通过该审批?';
                    if(check_status==2){
                        confirmTips='确定拒绝该审批?';
                    }                
                    tool.ask(confirmTips, function(index){
                        $.ajax({
                            url: "/api/check/flow_check",
                            type:'post',
                            data:{
                                action_id:action_id,
                                check_name:me.sets.check_name,
                                check_flow_id:check_flow_id,
                                check_node:check_node,
                                check_uids:check_uids,
                                check:check_status,
                                content:content
                            },
                            success: function (e) {
                                layer.msg(e.msg);
                                if (e.code == 0) {    
                                    tool.sideClose(1000);
                                }
                            }
                        })
                        layer.close(index);
                    });   
                }
                else if(check_status ==3){            
                    layer.prompt({
                        formType: 2,
                        title: '请输入撤回理由',
                        area: ['480px', '120px'] //自定义文本域宽高
                    }, function(value, index, elem){
                        if(value==''){
                            layer.msg('请输入撤回理由');
                            return false;
                        }
                        $.ajax({
                            url: "/api/check/flow_check",
                            type:'post',
                            data:{
                                action_id:action_id,
                                check_name:me.sets.check_name,
                                check_flow_id:check_flow_id,
                                check:check_status,
                                content:value
                            },
                            success: function (e) {
                                layer.msg(e.msg);
                                if (e.code == 0) {    
                                    tool.sideClose(1000);
                                }
                            }
                        })
                        layer.close(index);
                    });
                }
                else if(check_status ==4){            
                    layer.prompt({
                        formType: 2,
                        title: '请输入反确认理由',
                        area: ['480px', '120px'] //自定义文本域宽高
                    }, function(value, index, elem){
                        if(value==''){
                            layer.msg('请输入反确认理由');
                            return false;
                        }
                        $.ajax({
                            url: "/api/check/flow_check",
                            type:'post',
                            data:{
                                action_id:action_id,
                                check_name:me.sets.check_name,
                                check_flow_id:check_flow_id,
                                check:check_status,
                                content:value
                            },
                            success: function (e) {
                                layer.msg(e.msg);
                                if (e.code == 0) {    
                                    tool.sideClose(1000);
                                }
                            }
                        })
                        layer.close(index);
                    });
                }
                return false;
            });
            
        }
    };
    exports('oaCheck', obj);
});