|
@@ -7,10 +7,9 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :xs="24" :sm="24" :lg="24">
|
|
|
<el-form-item prop="status" label-width="0">
|
|
|
- <el-radio-group v-model="screenForm.status" size="medium" @change="getList()">
|
|
|
- <el-radio-button label="">全部</el-radio-button>
|
|
|
- <el-radio-button v-for="(item, index) in statusList" :key="index" :label="item.value">{{item.label}}</el-radio-button>
|
|
|
- </el-radio-group>
|
|
|
+ <el-checkbox-group v-model="screenForm.status" size="medium" @change="getList()">
|
|
|
+ <el-checkbox-button v-for="(item, index) in statusList" :key="index" :label="item.value">{{item.label}}</el-checkbox-button>
|
|
|
+ </el-checkbox-group>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="12" :lg="6">
|
|
@@ -223,7 +222,7 @@ export default {
|
|
|
company: '',
|
|
|
createMan: '',
|
|
|
examineMan: '',
|
|
|
- status: '',
|
|
|
+ status: [],
|
|
|
},
|
|
|
statusList: [
|
|
|
{ label: '已保存', value: 'SAVE' },
|
|
@@ -259,7 +258,7 @@ export default {
|
|
|
useUnit: this.screenForm.company,
|
|
|
createName: this.screenForm.createMan,
|
|
|
confirmName: this.screenForm.examineMan,
|
|
|
- examineStatus: this.screenForm.status,
|
|
|
+ examineStatus: this.screenForm.status.join(','),
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -290,7 +289,7 @@ export default {
|
|
|
useUnit: this.screenForm.company,
|
|
|
createName: this.screenForm.createMan,
|
|
|
confirmName: this.screenForm.examineMan,
|
|
|
- examineStatus: this.screenForm.status,
|
|
|
+ examineStatus: this.screenForm.status.join(','),
|
|
|
};
|
|
|
getEnginList(params).then((res) => {
|
|
|
this.dataList = res.data.records;
|