复核通过时验证是否有历史质疑
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
390df569c9
commit
4b32c290e7
|
@ -830,7 +830,7 @@
|
||||||
{{ $t('trials:audit:button:save') }}
|
{{ $t('trials:audit:button:save') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<!-- 发质疑 -->
|
<!-- 发质疑 -->
|
||||||
<el-button :disabled="isAudit || SecondReviewState > 0" size="small" type="primary" round @click="handleQC">
|
<el-button :disabled="isAudit" size="small" type="primary" round @click="handleQC">
|
||||||
{{ $t('trials:audit:button:question') }}
|
{{ $t('trials:audit:button:question') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<!-- 历史质疑 -->
|
<!-- 历史质疑 -->
|
||||||
|
@ -1797,10 +1797,14 @@ export default {
|
||||||
if (!isVerify) {
|
if (!isVerify) {
|
||||||
return this.loading = false
|
return this.loading = false
|
||||||
}
|
}
|
||||||
this.IsSecondPass = true
|
let res = await verifyCanQCPassedOrFailed(this.trialId, this.data.Id)
|
||||||
const { ReviewImageQualityControlQuestion } = const_.processSignature
|
this.loading = false
|
||||||
this.signCode = ReviewImageQualityControlQuestion
|
if (res.IsSuccess) {
|
||||||
this.signVisible = true
|
this.IsSecondPass = true
|
||||||
|
const { ReviewImageQualityControlQuestion } = const_.processSignature
|
||||||
|
this.signCode = ReviewImageQualityControlQuestion
|
||||||
|
this.signVisible = true
|
||||||
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue