diff --git a/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue b/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue
index f1f09cfd..eccad55c 100644
--- a/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue
+++ b/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue
@@ -183,7 +183,7 @@
- {{ text }}
+ {{ text }}
{{ global.emptyLine }}
@@ -216,7 +216,7 @@
- {{ text }}
+ {{ text }}
{{ global.emptyLine }}
@@ -1020,6 +1020,11 @@ export default {
this.$message.warning(this.$t('workCenter.checkTableRequired'))
flag = false
}
+ // 征求意见列表, 至少一行数据
+ if (this.showConsultationList && (!this.dataSource || this.dataSource.length === 0)) {
+ flag = false
+ this.$message.warning(this.$t('addAtLeastOneRowOfData'))
+ }
baseFlag = flag
// 用户信息
const userInfo = this.$refs.personnelInfo.getDataObjVerify()
@@ -1261,4 +1266,8 @@ export default {
line-height: 1;
content: '*';
}
+
+.can-click {
+ cursor: pointer;
+}