一致性核查回复修改
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-05-22 14:06:38 +08:00
parent 64e67ad106
commit f045f68115
2 changed files with 5 additions and 3 deletions

View File

@ -81,10 +81,10 @@
> >
{{ $t('trials:consistencyCheck:button:sendMessage') }} {{ $t('trials:consistencyCheck:button:sendMessage') }}
</el-button> </el-button>
<!-- 回复 :disabled="!(checkState === 10 && checkChallengeState !== 3) || (recordContent && recordContent.length > 0 ? recordContent[recordContent.length - 1].UserTypeEnum * 1 === 2 : false)" --> <!-- 回复 -->
<el-button <el-button
v-hasPermi="['role:crc']" v-hasPermi="['role:crc']"
:disabled="!(checkState === 10 && checkChallengeState !== 3) || (recordContent && recordContent.length > 0 ? recordContent[recordContent.length - 1].UserTypeEnum * 1 === 2 : false)"
type="primary" type="primary"
:loading="btnLoading" :loading="btnLoading"
@click="handleCRCReply" @click="handleCRCReply"

View File

@ -208,7 +208,9 @@ export default {
if (!valid) return if (!valid) return
let confirm = true let confirm = true
if (this.msgList.every(item => !item.IsCheck)) { if (this.msgList.every(item => !item.IsCheck)) {
confirm = await this.$confirm(this.$t('trials:consistencyCheck:title:confirm')) confirm = await this.$confirm(this.$t('trials:consistencyCheck:title:confirm'), '', {
showConfirmButton: false
})
} }
if (!confirm) return false if (!confirm) return false
var TalkContent = '' var TalkContent = ''