|
@@ -85,8 +85,18 @@
|
|
<el-input v-model="screenForm.mainOrderId" placeholder="请输入订单号"></el-input>
|
|
<el-input v-model="screenForm.mainOrderId" placeholder="请输入订单号"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
+ <el-form-item label="工程登录编号" prop="refEnginRecordNo">
|
|
|
|
+ <el-input v-model="screenForm.refEnginRecordNo" placeholder="请输入工程登录编号"></el-input>
|
|
|
|
+ </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="24" :lg="12" class="tr">
|
|
|
|
|
|
+ <el-col :xs="24" :sm="24" :lg="24" class="tr">
|
|
<el-form-item label="">
|
|
<el-form-item label="">
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
<el-button type="primary" @click="submitScreenForm">搜索</el-button>
|
|
<el-button type="primary" @click="submitScreenForm">搜索</el-button>
|
|
@@ -352,6 +362,8 @@ export default {
|
|
salesMan: '',
|
|
salesMan: '',
|
|
orderType: '',
|
|
orderType: '',
|
|
mainOrderId: '',
|
|
mainOrderId: '',
|
|
|
|
+ refEnginRecordNo: '',
|
|
|
|
+ refUseUnit: '',
|
|
},
|
|
},
|
|
statusList: [
|
|
statusList: [
|
|
{ label: '已保存', value: 'SAVE' },
|
|
{ label: '已保存', value: 'SAVE' },
|
|
@@ -397,6 +409,8 @@ export default {
|
|
serviceId: this.screenForm.salesMan,
|
|
serviceId: this.screenForm.salesMan,
|
|
type: this.screenForm.orderType,
|
|
type: this.screenForm.orderType,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
|
+ refEnginRecordNo: this.screenForm.refEnginRecordNo,
|
|
|
|
+ refUseUnit: this.screenForm.refUseUnit,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
@@ -442,6 +456,8 @@ export default {
|
|
serviceId: this.screenForm.salesMan,
|
|
serviceId: this.screenForm.salesMan,
|
|
type: this.screenForm.orderType,
|
|
type: this.screenForm.orderType,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
|
+ refEnginRecordNo: this.screenForm.refEnginRecordNo,
|
|
|
|
+ refUseUnit: this.screenForm.refUseUnit,
|
|
};
|
|
};
|
|
getEnginList(params).then((res) => {
|
|
getEnginList(params).then((res) => {
|
|
res.data.records.forEach(item => {
|
|
res.data.records.forEach(item => {
|