Browse Source

fix: 双体系建设管理补充内容必填,更改上传文字

xiaweibo 1 month ago
parent
commit
a1665882bd

+ 6 - 0
src/views/production-safety/productionSafetySystem/doubleSystemManagement/components/doubleSystemManagementDetail.vue

@@ -222,6 +222,12 @@
       return;
     }
     
+    
+    if(!ruleFormData.content || ruleFormData.content === '<p><br></p>') {
+      ElMessage.error('请输入文档内容');
+      return;
+    }
+
     try {
       // 处理文件上传:先上传文件获取 URL,然后提取 fileUrl
       // let fileUrl = '';

+ 1 - 1
src/views/production-safety/productionSafetySystem/safetyStandardizationSystemManagement/components/safetyStandardizationSystemManagementDetail.vue

@@ -23,7 +23,7 @@
         /> -->
         <UploadFiles
           v-if="!isViewMode"
-          label="上传地址确认书"
+          label="上传文件"
           :maxCount="1"
           :file-list="ruleFormData.fileUrlList"
           @uploadSuccess="handleUploadSuccess"