|
@@ -72,6 +72,26 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="使用单位" prop="refUseUnit">
|
|
|
+ <el-input v-model="screenForm.refUseUnit" placeholder="请输入使用单位"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="规格型号" prop="specification">
|
|
|
+ <el-input v-model="screenForm.specification" placeholder="请输入规格型号"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="经销商" prop="customerKeyword">
|
|
|
+ <el-input v-model="screenForm.customerKeyword" placeholder="请输入经销商"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="区域" prop="refRegionWork">
|
|
|
+ <el-input v-model="screenForm.refRegionWork" placeholder="请输入区域"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
<el-col :xs="24" :sm="12" :lg="18" class="tr">
|
|
|
<el-form-item label="">
|
|
@@ -332,6 +352,10 @@ export default {
|
|
|
createMan: '',
|
|
|
examineMan: '',
|
|
|
salesMan: '',
|
|
|
+ refUseUnit: '',
|
|
|
+ specification: '',
|
|
|
+ customerKeyword: '',
|
|
|
+ refRegionWork: '',
|
|
|
},
|
|
|
statusList: [
|
|
|
{ label: '已保存', value: 'SAVE' },
|
|
@@ -375,6 +399,10 @@ export default {
|
|
|
createName: this.screenForm.createMan,
|
|
|
confirmName: this.screenForm.examineMan,
|
|
|
serviceId: this.screenForm.salesMan,
|
|
|
+ refUseUnit: this.screenForm.refUseUnit,
|
|
|
+ specification: this.screenForm.specification,
|
|
|
+ customerKeyword: this.screenForm.customerKeyword,
|
|
|
+ refRegionWork: this.screenForm.refRegionWork,
|
|
|
enginOrderType: 'HOME', // TRADE=商用 HOME=家用
|
|
|
}
|
|
|
},
|
|
@@ -419,6 +447,10 @@ export default {
|
|
|
createName: this.screenForm.createMan,
|
|
|
confirmName: this.screenForm.examineMan,
|
|
|
serviceId: this.screenForm.salesMan,
|
|
|
+ refUseUnit: this.screenForm.refUseUnit,
|
|
|
+ specification: this.screenForm.specification,
|
|
|
+ customerKeyword: this.screenForm.customerKeyword,
|
|
|
+ refRegionWork: this.screenForm.refRegionWork,
|
|
|
enginOrderType: 'HOME', // TRADE=商用 HOME=家用
|
|
|
};
|
|
|
getOrderList(params).then((res) => {
|