From dc3e687df3ba49f48f542c9c3088ce3bbc4318cd Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期三, 05 三月 2025 09:40:55 +0800
Subject: [PATCH] 解决上传文件需要认证的问题
---
src/views/CNAS/systemManagement/documentRecords/regularReviewsRecord.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/CNAS/systemManagement/documentRecords/regularReviewsRecord.vue b/src/views/CNAS/systemManagement/documentRecords/regularReviewsRecord.vue
index 53f1e11..9bb9cdb 100644
--- a/src/views/CNAS/systemManagement/documentRecords/regularReviewsRecord.vue
+++ b/src/views/CNAS/systemManagement/documentRecords/regularReviewsRecord.vue
@@ -224,7 +224,7 @@
font: '鏌ョ湅',
type: 'text',
method: 'handleLook',
- disabFun: (row, index) => {
+ disabled: (row, index) => {
return !row.url
}
}, {
@@ -232,7 +232,7 @@
font: '涓嬭浇',
type: 'text',
method: 'handleDown0',
- disabFun: (row, index) => {
+ disabled: (row, index) => {
return !row.url
}
},
@@ -241,7 +241,7 @@
font: '鎻愪氦',
type: 'text',
method: 'handleSubmit',
- disabFun: (row, index) => {
+ disabled: (row, index) => {
return !!row.submitUserName
}
}, {
@@ -249,7 +249,7 @@
font: '鎵瑰噯',
type: 'text',
method: 'handleApproval',
- disabFun: (row, index) => {
+ disabled: (row, index) => {
return !row.submitUserName || !!row.ratifyUserName
}
}],
--
Gitblit v1.9.3