|
@@ -80,8 +80,13 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="订单号" prop="mainOrderId">
|
|
|
+ <el-input v-model="screenForm.mainOrderId" placeholder="请输入订单号"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="18" class="tr">
|
|
|
+ <el-col :xs="24" :sm="24" :lg="12" class="tr">
|
|
|
<el-form-item label="">
|
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
|
<el-button type="primary" @click="submitScreenForm">搜索</el-button>
|
|
@@ -331,6 +336,7 @@ export default {
|
|
|
model: '',
|
|
|
salesMan: '',
|
|
|
orderType: '',
|
|
|
+ mainOrderId: '',
|
|
|
},
|
|
|
statusList: [
|
|
|
{ label: '已保存', value: 'SAVE' },
|
|
@@ -375,6 +381,7 @@ export default {
|
|
|
examineStatus: this.screenForm.status,
|
|
|
serviceId: this.screenForm.salesMan,
|
|
|
type: this.screenForm.orderType,
|
|
|
+ mainOrderId: this.screenForm.mainOrderId,
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -419,6 +426,7 @@ export default {
|
|
|
examineStatus: this.screenForm.status,
|
|
|
serviceId: this.screenForm.salesMan,
|
|
|
type: this.screenForm.orderType,
|
|
|
+ mainOrderId: this.screenForm.mainOrderId,
|
|
|
};
|
|
|
getApplyList(params).then((res) => {
|
|
|
res.data.records.forEach(item => {
|