From 733faf7f307aefa7ff561f2ff81dc0c5581d21ca Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@63.com>
Date: 星期一, 21 十一月 2022 14:12:06 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/plan/plan.js |   78 +++++++++++++++++++++++++++++----------
 1 files changed, 58 insertions(+), 20 deletions(-)

diff --git a/src/main/webapp/static/js/plan/plan.js b/src/main/webapp/static/js/plan/plan.js
index 31bfe0e..d3beded 100644
--- a/src/main/webapp/static/js/plan/plan.js
+++ b/src/main/webapp/static/js/plan/plan.js
@@ -19,6 +19,7 @@
     var cascader = layui.cascader;
     var tree = layui.tree;
     var dropdown = layui.dropdown;
+    var element = layui.element;
 
     $('#organization').html(localStorage.getItem('nickname') + ' <i class="layui-icon">&#xe61a;</i>');
 
@@ -193,7 +194,63 @@
 
     // 娣诲姞
     $("#planAddBtn").click(function () {
-        showEditModel();
+        let loadIndex = layer.load(2);
+        $.ajax({
+            url: baseUrl+"/planType/list/radio/auth",
+            headers: {'token': localStorage.getItem('token')},
+            method: 'POST',
+            success: function (res) {
+                if (res.code === 200){
+                    admin.open({
+                        type: 1,
+                        area: '300px',
+                        title: '鏂板缓鍞墠瑙勫垝鐢宠鍗�',
+                        content: $('#addDialogPre').html(),
+                        success: function (layero, dIndex) {
+                            let template = Handlebars.compile($('#planTypeTpl').html());
+                            $('#planTypeBox').html(template({list: res.data.map(function (d) {
+                                    return {
+                                        id: d.id,
+                                        name: d.name,
+                                        checked: d.checked
+                                    }
+                                })})
+                            );
+                            element.init();form.render();
+                            layer.close(loadIndex);
+
+                            form.on('submit(planTypeSubmit)', function (data) {
+                                // var loadIndex = layer.load(2);
+                                // $.ajax({
+                                //     url: baseUrl+"/plan/"+(mData?'update':'add')+"/auth",
+                                //     headers: {'token': localStorage.getItem('token')},
+                                //     data: data.field,
+                                //     method: 'POST',
+                                //     success: function (res) {
+                                //         layer.close(loadIndex);
+                                //         if (res.code === 200){
+                                //             layer.close(dIndex);
+                                //             layer.msg(res.msg, {icon: 1});
+                                //             tableReload();
+                                //         } else if (res.code === 403){
+                                //             top.location.href = baseUrl+"/";
+                                //         }else {
+                                //             layer.msg(res.msg, {icon: 2});
+                                //         }
+                                //     }
+                                // })
+                                alert(data.field.planType);
+                                return false;
+                            });
+                        }
+                    })
+                } else if (res.code === 403){
+                    top.location.href = baseUrl+"/";
+                }else {
+                    layer.msg(res.msg, {icon: 2});
+                }
+            }
+        })
     });
 
     // 鍒犻櫎
@@ -220,25 +277,6 @@
             where: searchData,
             page: {curr: 1}
         });
-    });
-
-    // 鐩戝惉澶村伐鍏锋爮浜嬩欢
-    table.on('toolbar(plan)', function (obj) {
-        var checkStatus = table.checkStatus(obj.config.id).data;
-        switch(obj.event) {
-            case 'addData':
-                showEditModel();
-                break;
-            case 'deleteData':
-               if (checkStatus.length === 0) {
-                   layer.msg('璇烽�夋嫨瑕佸垹闄ょ殑鏁版嵁', {icon: 2});
-                   return;
-               }
-               del(checkStatus.map(function (d) {
-                   return d.id;
-               }));
-               break;
-        }
     });
 
     // 鐩戝惉琛屽伐鍏蜂簨浠�

--
Gitblit v1.9.1