增加受试者中止状态筛选项
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
0df193c474
commit
b2e7eeaeb4
|
|
@ -37,6 +37,12 @@
|
||||||
<el-option v-for="item of $d.SubmitState" :value="item.value" :label="item.label" :key="item.label" />
|
<el-option v-for="item of $d.SubmitState" :value="item.value" :label="item.label" :key="item.label" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</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.YesOrNo" :value="item.value" :label="item.label" :key="item.label" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<!-- 审核状态 -->
|
<!-- 审核状态 -->
|
||||||
<el-form-item style="margin-bottom: 10px" v-if="otherInfo.QCProcessEnum !== 0"
|
<el-form-item style="margin-bottom: 10px" v-if="otherInfo.QCProcessEnum !== 0"
|
||||||
:label="$t('trials:crcUpload:table:auditState')">
|
:label="$t('trials:crcUpload:table:auditState')">
|
||||||
|
|
@ -868,6 +874,7 @@ const searchDataDefault = () => {
|
||||||
AuditStateArray: [],
|
AuditStateArray: [],
|
||||||
SubmitState: null,
|
SubmitState: null,
|
||||||
ChallengeState: null,
|
ChallengeState: null,
|
||||||
|
IsSubjectQuit: "",
|
||||||
// SortField: '',
|
// SortField: '',
|
||||||
// Asc: false
|
// Asc: false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,12 @@
|
||||||
<el-option key="Other" label="Out of Plan" value="1.11" />
|
<el-option key="Other" label="Out of Plan" value="1.11" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- 受试者中止状态 -->
|
||||||
|
<el-form-item style="margin-bottom: 10px" :label="$t('trials:qcCheck:table:IsSubjectQuit')">
|
||||||
|
<el-select v-model="searchData.IsSubjectQuit" clearable style="width: 120px">
|
||||||
|
<el-option v-for="item of $d.YesOrNo" :value="item.value" :label="item.label" :key="item.label" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<!-- 审核状态 -->
|
<!-- 审核状态 -->
|
||||||
<el-form-item v-if="OtherInfo.QCProcessEnum !== 0" :label="$t('trials:qcCheck:table:auditState')"
|
<el-form-item v-if="OtherInfo.QCProcessEnum !== 0" :label="$t('trials:qcCheck:table:auditState')"
|
||||||
class="my_multiple">
|
class="my_multiple">
|
||||||
|
|
@ -652,6 +657,7 @@ const searchDataDefault = () => {
|
||||||
EndAuditTime: null,
|
EndAuditTime: null,
|
||||||
PageIndex: 1,
|
PageIndex: 1,
|
||||||
PageSize: 20,
|
PageSize: 20,
|
||||||
|
IsSubjectQuit: ''
|
||||||
// SortField: '',
|
// SortField: '',
|
||||||
// Asc: false
|
// Asc: false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue