|
@@ -9,11 +9,12 @@
|
|
|
<el-button size="mini" type="primary" @click="submitScreenForm">搜索</el-button>
|
|
|
</template>
|
|
|
<template #left_btn>
|
|
|
- <el-checkbox-group v-model="screenForm.status" @change="getList()" size="mini">
|
|
|
- <el-checkbox-button v-for="(item, index) in statusList" :key="index" :label="item.value">{{
|
|
|
+ <el-radio-group size="mini" v-model="screenForm.status" @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-checkbox-button>
|
|
|
- </el-checkbox-group>
|
|
|
+ }}</el-radio-button>
|
|
|
+ </el-radio-group>
|
|
|
</template>
|
|
|
<template #search>
|
|
|
<el-form ref="screenForm" :model="screenForm" label-width="100px" size="mini" label-position="left">
|
|
@@ -496,7 +497,7 @@ export default {
|
|
|
company: '',
|
|
|
createMan: '',
|
|
|
examineMan: '',
|
|
|
- status: [],
|
|
|
+ status: '',
|
|
|
salesMan: '',
|
|
|
model: '',
|
|
|
orderDate: '',
|
|
@@ -505,10 +506,11 @@ export default {
|
|
|
statusList: [
|
|
|
{ label: '已保存', value: 'SAVE' },
|
|
|
{ label: '待审核', value: 'WAIT' },
|
|
|
- { label: '审核通过', value: 'OK' }
|
|
|
+ { label: '审核通过', value: 'OK' },
|
|
|
// // { label: '审核驳回', value: 'FAIL' },,
|
|
|
- // { label: '已关闭', value: 'CLOSE' },
|
|
|
+ { label: '已关闭', value: 'CLOSE' }
|
|
|
],
|
|
|
+
|
|
|
salesmanList: [],
|
|
|
transfer: [
|
|
|
{ label: '是', value: true },
|
|
@@ -547,7 +549,7 @@ export default {
|
|
|
useUnit: this.screenForm.company,
|
|
|
createName: this.screenForm.createMan,
|
|
|
confirmName: this.screenForm.examineMan,
|
|
|
- examineStatus: this.screenForm.status.join(','),
|
|
|
+ examineStatus: this.screenForm.status,
|
|
|
serviceId: this.screenForm.salesMan,
|
|
|
specification: this.screenForm.model,
|
|
|
isDirectTransfer: this.screenForm.isDirectTransfer
|
|
@@ -620,7 +622,7 @@ export default {
|
|
|
useUnit: this.screenForm.company,
|
|
|
createName: this.screenForm.createMan,
|
|
|
confirmName: this.screenForm.examineMan,
|
|
|
- examineStatus: this.screenForm.status.join(','),
|
|
|
+ examineStatus: this.screenForm.status,
|
|
|
serviceId: this.screenForm.salesMan,
|
|
|
specification: this.screenForm.model,
|
|
|
isDirectTransfer: this.screenForm.isDirectTransfer
|