From de967d5d54a6eee38221ea14b2472401974608db Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期三, 10 七月 2024 18:25:04 +0800
Subject: [PATCH] 晚上上传组件导入提示、调整默认对话框边距、密码策略查询以及新增修改 密码长度、必填种类、锁定时间等正则校验 完善启动流程默认传参

---
 Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue b/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue
index 6b73c7c..8dc07bf 100644
--- a/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue
+++ b/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue
@@ -11,10 +11,11 @@
     style="margin-top: -20vh !important;"
   >
     <Divider left="30px" text="瀵煎叆鎻愮ず"></Divider>
-    <ul>
-      <li>
+    <ul style="color: #e73a3a">
+      <li v-if="!paramVOS.tipList">
         璇风偣鍑绘祻瑙堟枃浠惰繘琛屼笂浼�
       </li>
+      <li v-if="paramVOS.tipList && paramVOS.tipList.length >=1 " v-for="(item,index) in paramVOS.tipList" :key="index"> {{index+1}} : {{item}}銆�</li>
     </ul>
     <Divider left="30px" text="閫夋嫨鏂囦欢鍚庝細鑷姩涓婁紶"></Divider>
     <el-upload
@@ -87,9 +88,9 @@
       return {
         ownbizOid: this.sourceData.oid,
         ownBtmName: this.sourceData.btmname,
-        secretGrade: -1,
-        fileDocClassify: '',
-        updateFileFlag: true,
+        secretGrade: this.paramVOS.secretGrade || -1,
+        fileDocClassify: this.paramVOS.fileDocClassify || "",
+        updateFileFlag: this.paramVOS.updateFileFlag  || true,
       }
     },
     width() {
@@ -140,7 +141,7 @@
     onSuccess(resbonse) {
       if (resbonse.code === 200) {
         this.$message.success("涓婁紶鎴愬姛锛�");
-        this.dialogVisible = false;
+        this.visible = false;
       }else {
         this.$message.error(resbonse.msg);
       }
@@ -155,7 +156,7 @@
       if (file.status === "success" || file.status === "error") {
         this.pageLoading.close();
       }
-    }
+    },
   }
 }
 </script>

--
Gitblit v1.9.3