From 7f9d058a0e632be6a3daf6f46d26b69742db0720 Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期三, 08 十一月 2023 13:13:25 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/zycrm' into zycrm --- src/main/webapp/static/js/cstmr/cstmr2.js | 39 +++++++++++++++++++++++++++++++++++++-- 1 files changed, 37 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/static/js/cstmr/cstmr2.js b/src/main/webapp/static/js/cstmr/cstmr2.js index fe89e10..2916008 100644 --- a/src/main/webapp/static/js/cstmr/cstmr2.js +++ b/src/main/webapp/static/js/cstmr/cstmr2.js @@ -196,6 +196,19 @@ }); // 娣诲姞 + $("#cstmrAddBtn1").click(function () { + form.verify({ + account: function(value, item){ + var min = item.getAttribute('lay-min'); + if(value.length < min){ + return '瀹㈡埛鍚嶇О涓嶈兘灏忎簬'+min+'涓瓧绗︾殑闀垮害'; + } + } + }); + showEditModel2(); + }); + + // 娣诲姞 $("#cstmrAddBtn").click(function () { form.verify({ account: function(value, item){ @@ -395,7 +408,7 @@ } var loadIndex = layer.load(2); $.ajax({ - url: baseUrl+"/cstmr/"+(mData?'update':'add')+"/auth", + url: baseUrl+"/cstmr/"+(mData?'update':'add2')+"/auth", headers: {'token': localStorage.getItem('token')}, data: data.field, method: 'POST', @@ -552,7 +565,7 @@ radio: true, remoteMethod: function (val, cb, show) { $.ajax({ - url: baseUrl + "/cstmr2/all/get/kv", + url: baseUrl + "/cstmrSearch/auth", headers: {'token': localStorage.getItem('token')}, data: { condition: val @@ -568,6 +581,28 @@ } }); }, + on: function (data) { + console.log(data) + let arr = data.arr + let change = data.change; + if (arr.length > 0 && change.length>0) { + let name = arr[0].name; + $.ajax({ + url: baseUrl + "/cstmr/name/check/auth", + headers: {'token': localStorage.getItem('token')}, + data: { + name: name + }, + method: 'POST', + success: function (res) { + if (res.code === 200) { + } else { + layer.msg(res.msg, {icon: 2}); + } + } + }); + } + } }); } -- Gitblit v1.9.1