|
@@ -136,6 +136,20 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :ms="6" :lg="6">
|
|
|
+ <el-form-item label="经销商编码" prop="customerNumber">
|
|
|
+ <el-select
|
|
|
+ v-model="screenForm.customerNumber"
|
|
|
+ size="mini"
|
|
|
+ filterable
|
|
|
+ clearable
|
|
|
+ placeholder="经销商编码"
|
|
|
+ class="select_height"
|
|
|
+ >
|
|
|
+ <el-option v-for="item in CrList" :key="item.id" :label="item.number" :value="item.number" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
<el-col :xs="24" :ms="6" :lg="6">
|
|
|
<el-form-item label="机型" prop="specification">
|
|
@@ -328,7 +342,8 @@ export default {
|
|
|
title: '',
|
|
|
type: '',
|
|
|
customerId: '',
|
|
|
- specification: ''
|
|
|
+ specification: '',
|
|
|
+ customerNumber: ''
|
|
|
},
|
|
|
fileList: [],
|
|
|
statusOptions: [
|
|
@@ -414,6 +429,7 @@ export default {
|
|
|
status: this.screenForm.status,
|
|
|
title: this.screenForm.title,
|
|
|
customerId: this.screenForm.customerId,
|
|
|
+ customerNumber: this.screenForm.customerNumber,
|
|
|
specification: this.screenForm.specification
|
|
|
}
|
|
|
getList(params).then(res => {
|
|
@@ -422,16 +438,17 @@ export default {
|
|
|
this.listTotal = res.data.total
|
|
|
this.listLoading = false
|
|
|
})
|
|
|
- const paramsType = {
|
|
|
- pageNum: 1,
|
|
|
- pageSize: 10,
|
|
|
- saleCdoe: '',
|
|
|
- saleName: '',
|
|
|
- stauts: ''
|
|
|
- }
|
|
|
- getTypeList(paramsType).then(res => {
|
|
|
- this.typeList = res.data.records
|
|
|
- })
|
|
|
+ // 产品类型
|
|
|
+ // const paramsType = {
|
|
|
+ // pageNum: 1,
|
|
|
+ // pageSize: 10,
|
|
|
+ // saleCdoe: '',
|
|
|
+ // saleName: '',
|
|
|
+ // stauts: ''
|
|
|
+ // }
|
|
|
+ // getTypeList(paramsType).then(res => {
|
|
|
+ // this.typeList = res.data.records
|
|
|
+ // })
|
|
|
},
|
|
|
hanleAbandon(id) {
|
|
|
setAbandon({ policyId: id }).then(res => {
|