From 7fee45e68785dfba91f803772a4aef9017a2a811 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期四, 03 八月 2023 16:36:10 +0800
Subject: [PATCH] #界面完善

---
 src/main/webapp/static/js/cstmr/cstmr.js |   24 +++++++++++++++++++++---
 1 files changed, 21 insertions(+), 3 deletions(-)

diff --git a/src/main/webapp/static/js/cstmr/cstmr.js b/src/main/webapp/static/js/cstmr/cstmr.js
index d53d7a0..88f1123 100644
--- a/src/main/webapp/static/js/cstmr/cstmr.js
+++ b/src/main/webapp/static/js/cstmr/cstmr.js
@@ -81,13 +81,15 @@
 
     // 鏍戝舰鍥�
     var organizationTree;
-    window.loadTree = function(condition){
+    window.loadTree = function(followerName,conditionName,condition){
         var loadIndex = layer.load(2);
         $.ajax({
             url: baseUrl+"/dept/user/tree/auth",
             headers: {'token': localStorage.getItem('token')},
             data: {
-                'condition': condition
+                'followerName' : followerName,
+                'conditionName' : conditionName,
+                'condition' : condition
             },
             method: 'POST',
             success: function (res) {
@@ -140,6 +142,7 @@
             // ,{field: 'id', align: 'center',title: 'ID'}
             // ,{field: 'hostId$', align: 'center',title: '鎵�灞炲晢鎴�'}
             ,{field: 'name', align: 'left',title: '瀹㈡埛鍚嶇О', style: 'color: #1890ff;cursor:pointer', event: 'more', width: 350}
+            ,{field: 'simple', align: 'left',title: '瀹㈡埛绠�绉�', hide: false}
             ,{field: 'uuid', align: 'left',title: '瀹㈡埛浠e彿'}
             ,{field: 'addr', align: 'left',title: '璇︾粏鍦板潃', templet:function(d){return emptyShow(d.addr)}}
             ,{field: 'tel', align: 'left',title: '鐢佃瘽', templet:function(d){return emptyShow(d.tel)}}
@@ -148,7 +151,6 @@
             ,{field: 'userId$', align: 'left',title: '娣诲姞浜哄憳'}
             ,{field: 'createTime$', align: 'left',title: '娣诲姞鏃堕棿'}
             ,{field: 'deptId$', align: 'left',title: '鎵�灞為儴闂�', hide: true}
-            ,{field: 'simple', align: 'left',title: '瀹㈡埛绠�绉�', hide: true}
             ,{field: 'rela', align: 'left',title: '瀹㈡埛鍏崇郴', hide: true}
             ,{field: 'contacts', align: 'left',title: '瀹㈡埛鑱旂郴浜�', hide: true}
             ,{field: 'director$', align: 'left',title: '璐熻矗浜�', hide: true}
@@ -193,6 +195,14 @@
 
     // 娣诲姞
     $("#cstmrAddBtn").click(function () {
+        form.verify({
+            account: function(value, item){
+                var min = item.getAttribute('lay-min');
+                if(value.length < min){
+                    return '瀹㈡埛鍚嶇О涓嶈兘灏忎簬'+min+'涓瓧绗︾殑闀垮害';
+                }
+            }
+        });
         showEditModel();
     });
 
@@ -255,6 +265,14 @@
             title: (mData ? '淇敼' : '娣诲姞') + '鐢叉柟鍗曚綅',
             content: $('#editDialog').html(),
             success: function (layero, dIndex) {
+                form.verify({
+                    name: function(value, item){
+                        var min = item.getAttribute('lay-min');
+                        if(value.length < min){
+                            return '瀹㈡埛鍚嶇О涓嶈兘灏忎簬'+min+'涓瓧绗︾殑闀垮害';
+                        }
+                    }
+                });
                 if (mData) {
                     $('#cascaderVal').val(mData.pcd);
                 }

--
Gitblit v1.9.1