|
@@ -15,9 +15,9 @@
|
|
|
<el-radio-button label="WAIT">待审核</el-radio-button>
|
|
|
<!-- <el-radio-button label="FAIL">审核驳回</el-radio-button> -->
|
|
|
<el-radio-button label="OK">审核通过</el-radio-button>
|
|
|
- <el-radio-button label="AMEND">保存(补充资料)</el-radio-button>
|
|
|
- <el-radio-button label="WAIT_REVIEW">待复核</el-radio-button>
|
|
|
- <el-radio-button label="REVIEW">复核</el-radio-button>
|
|
|
+ <el-radio-button label="OK">保存(补充资料)</el-radio-button>
|
|
|
+ <el-radio-button label="OK">待复核</el-radio-button>
|
|
|
+ <el-radio-button label="OK">复核</el-radio-button>
|
|
|
|
|
|
</el-radio-group>
|
|
|
</template>
|
|
@@ -273,7 +273,7 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :sm="12" :lg="6" >
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6" v-if="examine === ''" >
|
|
|
<el-form-item label="资料状态 " prop="dataStates">
|
|
|
<el-select v-model="screenForm.dataStates" clearable style="width: 100%" multiple placeholder="请选择资料状态 ">
|
|
|
<el-option v-for="item in dataStatesArr" :key="item.value" :label="item.label"
|
|
@@ -893,6 +893,9 @@ export default {
|
|
|
},
|
|
|
// 切换radio
|
|
|
changeRadioFn(v) {
|
|
|
+ if (!v) {
|
|
|
+ this.screenForm.dataStates= []
|
|
|
+ }
|
|
|
this.examine = v
|
|
|
this.getDataList({
|
|
|
pageSize: this.pageSize,
|
|
@@ -958,7 +961,8 @@ export default {
|
|
|
async getDataList(data) {
|
|
|
getDepositCountList({
|
|
|
enginOrderType: this.enginOrderType,
|
|
|
- ...this.screenForm
|
|
|
+ ...this.screenForm,
|
|
|
+ examineStatus:this.examine,
|
|
|
}).then(res => {
|
|
|
if (res.data) {
|
|
|
this.numSum = res.data
|