fix 80146
This commit is contained in:
@@ -183,7 +183,7 @@
|
||||
|
||||
<!--修改前、修改后、修改理由弹框显示内容-->
|
||||
<template v-slot:modalDetail="{text, record}">
|
||||
<div class="table-text" @click="showContent(text)" v-if="text">{{ text }}</div>
|
||||
<div class="table-text can-click" @click="showContent(text)" v-if="text">{{ text }}</div>
|
||||
<div v-else>{{ global.emptyLine }}</div>
|
||||
</template>
|
||||
|
||||
@@ -216,7 +216,7 @@
|
||||
|
||||
<!--修改前、修改后、修改理由弹框显示内容-->
|
||||
<template v-slot:modalDetail="{text, record}">
|
||||
<div class="table-text" @click="showContent(text)" v-if="text">{{ text }}</div>
|
||||
<div class="table-text can-click" @click="showContent(text)" v-if="text">{{ text }}</div>
|
||||
<div v-else>{{ global.emptyLine }}</div>
|
||||
</template>
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user