From a0b1fdec2bc5ddad11e981936b80d0fdf1e4bc69 Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期三, 03 七月 2024 09:25:06 +0800
Subject: [PATCH] Merge branch 'master' of http://114.132.189.42:9002/r/center-lims-before into master

---
 src/components/tool/value-table.vue |   27 ++++++++++++++++++---------
 1 files changed, 18 insertions(+), 9 deletions(-)

diff --git a/src/components/tool/value-table.vue b/src/components/tool/value-table.vue
index 127e63e..0f74844 100644
--- a/src/components/tool/value-table.vue
+++ b/src/components/tool/value-table.vue
@@ -120,7 +120,7 @@
         <el-table-column type="index" align="center" label="搴忓彿" width="65" v-if="data.isIndex" :key="Math.random()">
         </el-table-column>
         <el-table-column :prop="a.label" :label="a.value" :sortable="data.sort==false?false:'custom'"
-          v-for="(a, ai) in tableHead" :key="ai" show-overflow-tooltip min-width="155">
+          v-for="(a, ai) in tableHead" :key="ai" show-overflow-tooltip min-width="155" v-if="!data.headNoShow||(data.headNoShow&&data.headNoShow.length==0)||(data.headNoShow&&data.headNoShow.length>0&&!data.headNoShow.find(d=>d==a.label))">
           <template slot-scope="scope">
             <div v-if="showType(a.label, data.tagField) != null">
               <template v-if="typeof(scope.row[a.label]) == 'object'">
@@ -793,21 +793,30 @@
             return
           }
         }
-        this.upLoad = true
         for (var a in this.data.selectField) {
           if (this.data.selectField[a].choose == true) {
             this.upData[a] = JSON.stringify(this.upData[a])
           }
         }
-        this.upHead.forEach((item, index) => {
-          if (this.data.cascaderField && this.data.cascaderField[item.label]) {
-            if (this.upData[item.label]) {
-              this.upData[item.label] = JSON.stringify(this.upData[item.label])
-            } else {
-              this.upData[item.label] = ''
+        for (var i = 0; i < this.upHead.length; i++) {
+          if(this.upHead[i].label == 'password'){
+            if(this.upData[this.upHead[i].label]){
+              const reg2 =/^(?=.*?[a-z])(?=.*?[A-Z])(?=.*?\d)(?=.*?[~!#@$%^*&()_+{}\[\]|\\;:'",<.>\/?])[a-zA-Z\d~!#@$%^*&()_+{}\[\]|\\;:'",<.>\/?]*$/;
+              if (!reg2.test(this.upData[this.upHead[i].label])) {
+                this.$message.error('瀵嗙爜蹇呴』鍖呮嫭鏁板瓧銆佸ぇ灏忓啓瀛楁瘝浠ュ強鐗规畩瀛楃')
+                return
+              }
             }
           }
-        })
+          if (this.data.cascaderField && this.data.cascaderField[this.upHead[i].label]) {
+            if (this.upData[this.upHead[i].label]) {
+              this.upData[this.upHead[i].label] = JSON.stringify(this.upData[this.upHead[i].label])
+            } else {
+              this.upData[this.upHead[i].label] = ''
+            }
+          }
+        }
+        this.upLoad = true
         this.$axios.post(this.upUrl, this.upData, {
           headers: {
             'Content-Type': 'application/json'

--
Gitblit v1.9.3