From a84052e14cd5db392846283e9421fa80f05a39eb Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期二, 10 十月 2023 14:16:55 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/plan/plan.js |   54 +++++++++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 47 insertions(+), 7 deletions(-)

diff --git a/src/main/webapp/static/js/plan/plan.js b/src/main/webapp/static/js/plan/plan.js
index ec26e83..3af7f75 100644
--- a/src/main/webapp/static/js/plan/plan.js
+++ b/src/main/webapp/static/js/plan/plan.js
@@ -151,7 +151,7 @@
             // ,{field: 'nowHeadman$', align: 'left',title: '瑙勫垝缁勯暱',hide: true}
             ,{field: 'orderId$', align: 'left',title: '璺熻釜椤圭洰', width: 220, style: 'color: #1890ff;cursor:pointer', event: 'orderMore',hide: false}
             // ,{field: 'cstmrId$', align: 'left',title: '鐢叉柟鍗曚綅', width: 220, style: 'color: #1890ff;cursor:pointer', event: 'cstmrMore',hide: true}
-            ,{field: 'appleTime$', align: 'left',title: '鐢宠鏃ユ湡', hide: true}
+            ,{field: 'appleTime$', align: 'left',title: '鐢宠鏃ユ湡', hide: false}
             // ,{field: 'beItem$', align: 'center',title: '绔嬮」'}
             // ,{field: 'planner', align: 'left',title: '瑙勫垝鍛�', templet:function(d){return emptyShow(d.planner)}}
             // ,{field: 'finishTime$', align: 'center',title: '瀹屾垚鏃堕棿'}
@@ -165,13 +165,13 @@
             ,{field: 'settle$', align: 'center',title: '杩涘害', width: 150}
             // ,{field: 'settleMsg', align: 'center',title: '瀹℃牳杩涘害'}
             // ,{field: 'comment', align: 'center',title: '璇勮'}
-            // ,{field: 'status$', align: 'center',title: '鐘舵��'}
-            ,{field: 'createTime$', align: 'left',title: '娣诲姞鏃ユ湡', width: 160, hide: false}
+            ,{field: 'status$', align: 'center',title: '鐘舵��'}
+            ,{field: 'createTime$', align: 'left',title: '娣诲姞鏃ユ湡', width: 160, hide: true}
             ,{field: 'updateBy$', align: 'left',title: '淇敼浜�', width: 100}
             ,{field: 'updateTime$', align: 'left',title: '淇敼鏃堕棿', hide: true}
             ,{field: 'memo', align: 'left',title: '娉ㄩ噴', hide: true}
 
-            ,{fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width: 280}
+            ,{fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width: 340}
         ]],
         request: {
             pageName: 'curr',
@@ -323,7 +323,8 @@
                                                     ])
                                                     let planNeedSel = loadPlanNeedSel();
                                                     form.val('detail', {
-                                                        planTypeName: planType.name
+                                                        planTypeName: planType.name,
+                                                        userXmlSelPhone: res0.data.mobile
                                                     });
                                                     layDateRender();
                                                     form.on('submit(editSubmit)', function (data) {
@@ -476,7 +477,7 @@
                 }, function (i) {
                     layer.close(i);
                     // 鎸囧畾瑙勫垝鍛�
-                    if (data.settle === 2) {
+                    if (data.settle === 1) {
                         admin.open({
                             type: 1,
                             area: '300px',
@@ -528,6 +529,17 @@
                     } else {
                         approval(data.id);
                     }
+                });
+                break;
+            case 'approvalEnd':
+                layer.confirm('瀹℃壒鎷掔粷锛�', {
+                    skin: 'layui-layer-admin',
+                    shade: .1,
+                    offset: '200px',
+                    title: data.name
+                }, function (i) {
+                    layer.close(i);
+                    approvalEnd(data.id);
                 });
                 break;
             case 'edit':
@@ -633,6 +645,33 @@
         let loadIndex = layer.load(2);
         $.ajax({
             url: baseUrl+"/plan/approval/auth",
+            headers: {'token': localStorage.getItem('token')},
+            data: {
+                planId: planId,
+                plannerId: plannerId
+            },
+            method: 'POST',
+            success: function (res) {
+                if (dIdx) {
+                    layer.close(dIdx);
+                }
+                layer.close(loadIndex);
+                if (res.code === 200){
+                    layer.msg(res.msg, {icon: 1});
+                    tableReload();
+                } else if (res.code === 403){
+                    top.location.href = baseUrl+"/";
+                } else {
+                    layer.msg(res.msg, {icon: 2});
+                }
+            }
+        })
+    }
+
+    function approvalEnd(planId, plannerId, dIdx) {
+        let loadIndex = layer.load(2);
+        $.ajax({
+            url: baseUrl+"/plan/approvalEnd/auth",
             headers: {'token': localStorage.getItem('token')},
             data: {
                 planId: planId,
@@ -912,7 +951,8 @@
                     method: 'POST',
                     success: function (res) {
                         if (res.code === 200) {
-                            cb(res.data)
+                            // cb(res.data)
+                            cb([]);
                         } else {
                             cb([]);
                             layer.msg(res.msg, {icon: 2});

--
Gitblit v1.9.1