| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695 |
- layui.define(['tool','oaPicker','uploadPlus'], function (exports) {
- const layer = layui.layer;
- const form = layui.form;
- const tool = layui.tool;
- const uploadPlus = layui.uploadPlus;
- const opts={
- "checkBox":"checkBox",//审核容器id
- "checking_btn":"",//待审核状态下自定义添加的按钮
- "checked_btn":"",//审核通过自定义添加的按钮
- "check_name": "",//审核类型标识
- "check_btn":1,//是否显示提交审核按钮
- "check_ok":function(){
- //审核通过的执行函数
- },
- "check_no":function(){
- //审核拒绝的执行函数
- },
- "check_back":function(){
- //撤回的执行函数
- },
- "check_reversed":function(){
- //反确认的执行函数
- }
- };
- 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-2">审批状态</td>
- <td>${me.checkStatus(status)}</td>
- </tr>
- `;
- return tem;
- },
- uidsTemplate: function () {
- let tem =`
- <td class="layui-td-gray-2">审批人<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-2">审批流程<font>*</font></td>
- <td>
- <select name="flow_id" lay-verify="required" lay-filter="flowtype" lay-reqText="请选择审批流程">
- ${flowtype}
- </select>
- </td>
- </tr>
- `;
- return tem;
- },
- copyTemplate: function (detail) {
- let me = this;
- let tem =`
- <tr style="${detail.is_copy==0?'display:none':''}">
- <td class="layui-td-gray-2">抄送人</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>
- `;
- return tem;
- },
- 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-2">审批记录</td><td colspan="5"><ul class="layui-timeline flow-record pt-2">';
- for(let l=0;l<record.length;l++){
- let check_content='';
- if(record[l].content!=''){
- check_content='审批意见:<span class="green">'+record[l].content+'</span>。';
- }
- tem+='<li class="layui-timeline-item delete-'+record[l].delete_time+'">\
- <i class="layui-icon layui-timeline-axis"></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>了此申请。'+check_content+'</p>';
- let file_array= record[l].file_array;
- if(file_array.length>0){
- tem+='<p style="padding:4px 24px 0;">审批附件:</p><div class="layui-row" style="padding:2px 16px;">';
- for(let f=0;f<file_array.length;f++){
- tem+='<div class="layui-col-md4">'+tool.fileCard(file_array[f],1)+'</div>';
- }
- tem+='</div>';
- }
- tem+='</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(flow[0])}
- </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(detail)}
- </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 style="${detail.is_copy==0?'display:none':''}"><td class="layui-td-gray-2">抄送人</td><td colspan="3">${detail.copy_unames}</td></tr>`;
-
- let checkNode = `<tr>
- <td class="layui-td-gray-2">审批节点 <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 style="${detail.is_file==0?'display:none':''}">
- <td class="layui-td-gray-2">审批附件 <button type="button" class="layui-btn layui-btn-xs" id="uploadBtnCheck"><i class="layui-icon"></i></button></td>
- <td colspan="3">
- <div class="layui-row" id="uploadBoxCheck"><input data-type="file" type="hidden" name="check_files" value=""></div>
- </td>
- </tr>
- <tr>
- <td class="layui-td-gray-2">审批意见</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 btnExport='<a href="/api/export/pdf?types='+me.sets.check_name+'&id='+detail.id+'" class="layui-btn" target="_blank"><i class="layui-icon layui-icon-print"></i>审批单导出打印</a>';
-
- let checkHtml = `
- <form class="layui-form">
- <h3 class="pb-2">审批操作</h3>
- <table class="layui-table layui-table-form">
- <tr>
- <td class="layui-td-gray-2">审批状态</td>
- <td>${me.checkStatus(detail.check_status)}</td>
- <td class="layui-td-gray-2">当前审批人</td>
- <td>${detail.check_unames}</td>
- </tr>
- ${checkCopy}
- <tr>
- <td class="layui-td-gray-2">审批流</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.is_back==1 && (detail.check_status==1 || detail.check_status==3)?btnBack:''}
- ${detail.is_reversed == 1 && detail.is_creater==1 && typeof me.sets.check_reversed ==='function' && detail.check_status==2?btnCheckBack:''}
- ${detail.is_export == 1 && detail.check_status==2?btnExport:''}
- ${detail.check_status==2?me.sets.checked_btn:''}
- </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(detail)}
- </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 && detail.is_back==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){
- if(e.data.length>0){
- checkBox.append(me.createTemplate(e.data));
- }
- else{
- let none = '<h3 class="pb-2">审批操作</h3>\
- <table class="layui-table layui-table-form">\
- <tr>\
- <td class="layui-td-gray-2">审批流程<font>*</font></td>\
- <td><input type="text" name="flow_id" value="" autocomplete="off" placeholder="未设置审批流程,请联系管理员设置" lay-verify="required" lay-reqtext="未设置审批流程,请联系管理员设置" class="layui-input" readonly></td>\
- </tr>\
- </table>';
- checkBox.append(none);
- }
- }
- 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));
- var fileUp = new uploadPlus({
- "target":'uploadBtnCheck',
- "targetBox":'uploadBoxCheck',
- });
- }
- 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 !=''){
- 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"></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>';
- }
- }
- if(flow_li==''){
- flow_li='<span style="color:#999;">审批流程错误,请联系管理员设置</span>';
- }
- formHtml = '<td class="layui-td-gray-2">审批流</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);
- }
- }
- if(typeof me.sets.post_form ==='string' && typeof me.sets.post_url ==='string'){
- let postData = form.val(me.sets.post_form);
- tool.post(me.sets.post_url, postData, function(res){
- if (res.code == 0) {
- tool.post("/api/check/submit_check", data.field, callback);
- }
- else{
- layer.msg(res.msg);
- }
- });
- }
- else{
- 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='',check_files='';
- 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){
- let check_files = checkBox.find('input[name="check_files"]').val();
- let confirmTips='确定通过该审批?';
- if(check_status==2){
- confirmTips='确定拒绝该审批?';
- if(content==''){
- layer.msg('请输入审批意见');
- return false;
- }
- }
- tool.ask(confirmTips, function(index){
- if(typeof me.sets.post_form ==='string' && typeof me.sets.post_url ==='string'){
- let postData = form.val(me.sets.post_form);
- tool.post(me.sets.post_url, postData, function(res){
- if (res.code == 0) {
- $.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,
- check_files:check_files,
- content:content
- },
- success: function (e) {
- layer.msg(e.msg);
- if (e.code == 0) {
- if(e.data.check_status==2 && typeof me.sets.check_ok ==='function'){
- me.sets.check_ok(e);
- }
- if(e.data.check_status==3 && typeof me.sets.check_no ==='function'){
- me.sets.check_no(e);
- }
- tool.sideClose(1000);
- }
- }
- })
- }
- else{
- layer.msg(res.msg);
- }
- });
- }
- else{
- $.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,
- check_files:check_files,
- content:content
- },
- success: function (e) {
- layer.msg(e.msg);
- if (e.code == 0) {
- if(e.data.check_status==2 && typeof me.sets.check_ok ==='function'){
- me.sets.check_ok(e);
- }
- if(e.data.check_status==3 && typeof me.sets.check_no ==='function'){
- me.sets.check_no(e);
- }
- tool.sideClose(1000);
- }
- }
- })
- }
- layer.close(index);
- });
- }
- else if(check_status ==3){
- $(parent.$('.express-close')).addClass('parent-colse');
- 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) {
- if(e.data.check_status==4 && typeof me.sets.check_back ==='function'){
- me.sets.check_back(e);
- }
- tool.sideClose(1000);
- }
- }
- })
- $(parent.$('.express-close')).removeClass('parent-colse');
- layer.close(index);
- });
- }
- else if(check_status ==4){
- $(parent.$('.express-close')).addClass('parent-colse');
- 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) {
- if(e.data.check_status==0 && typeof me.sets.check_reversed ==='function'){
- me.sets.check_reversed(e);
- }
- tool.sideClose(1000);
- }
- }
- })
- $(parent.$('.express-close')).removeClass('parent-colse');
- layer.close(index);
- });
- }
- return false;
- });
-
- }
- };
- exports('oaCheck', obj);
- });
|