影像上传列表受试者状态查询字段变更
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
6b8711232e
commit
6e6e2d11d0
|
|
@ -39,8 +39,9 @@
|
|||
</el-form-item>
|
||||
<!-- 受试者中止状态 -->
|
||||
<el-form-item style="margin-bottom: 10px" :label="$t('trials:crcUpload:table:IsSubjectQuit')">
|
||||
<el-select v-model="searchData.IsSubjectQuit" clearable style="width: 120px">
|
||||
<el-option v-for="item of $d.Subject_Visit_Status" :value="item.value" :label="item.label" :key="item.label" />
|
||||
<el-select v-model="searchData.SubjectStatus" clearable style="width: 120px">
|
||||
<el-option v-for="item of $d.Subject_Visit_Status" :value="item.value" :label="item.label"
|
||||
:key="item.label" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!-- 审核状态 -->
|
||||
|
|
@ -875,6 +876,7 @@ const searchDataDefault = () => {
|
|||
SubmitState: null,
|
||||
ChallengeState: null,
|
||||
IsSubjectQuit: "",
|
||||
SubjectStatus: null
|
||||
// SortField: '',
|
||||
// Asc: false
|
||||
}
|
||||
|
|
@ -1022,7 +1024,7 @@ export default {
|
|||
methods: {
|
||||
// 申请影像退回
|
||||
async imageBack(row) {
|
||||
try {
|
||||
try {
|
||||
let title = `${this.$t('trials:crcUpload:confirmMessage:imageBackTitle').replace('xxx', row.SubjectCode).replace('yyy', row.VisitName)}`
|
||||
this.$prompt(`<p style="margin-left: 5px;">${title}</p><span style="color:#F56C6C">*</span><span>${this.$t("trials:crcUpload:confirmMessage:ApplyReason")}</span>`, this.$t("trials:crcUpload:confirmMessage:imageBack"), {
|
||||
confirmButtonText: this.$t("common:button:save"),
|
||||
|
|
|
|||
Loading…
Reference in New Issue