1
continuous-integration/drone/push Build is passing Details

uat
wangxiaoshuang 2025-05-23 15:24:49 +08:00
parent e770dc1078
commit f0e6708533
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@
:title="$t('trials:crcUpload:label:isClosed')" @click="handleOpenHistoryChat(scope.row)" />
</span>
<!-- 有质疑且有质疑未关闭 -->
<span v-else-if="scope.row.ChallengeState == 2">
<span v-else-if="scope.row.ChallengeState === 2">
<el-button type="danger" style="font-size: 15px" size="mini" icon="el-icon-question" circle
:title="$t('trials:crcUpload:label:isNotClose')" @click="handleOpenHistoryChat(scope.row)" />
</span>
@ -320,7 +320,7 @@
scope.row.IsLostVisit
" circle :title="$t('trials:crcUpload:action:submit')" @click="handleSubmit(scope.row)" />
<!-- 退回 -->
<el-button :disabled="scope.row.SubmitState * 1 < 2 || scope.row.IsImageBackApplying || scope.row.ChallengeState === 2
<el-button :disabled="scope.row.SubmitState * 1 < 2 || scope.row.IsImageBackApplying || scope.row.ChallengeState * 1 === 2
" v-hasPermi="['trials:trials-panel:visit:crc-upload:back']" icon="el-icon-back" circle
:title="$t('trials:crcUpload:action:back')" @click="imageBack(scope.row)" />
<!-- 编辑 -->