|
@@ -70,7 +70,7 @@
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="12" :lg="6">
|
|
|
<el-form-item label="表体业务员" prop="serviceId">
|
|
|
- <el-select v-model="screenForm.serviceId" placeholder="选择表体业务员" size="small" clearable filterable style="width: 100%">
|
|
|
+ <el-select v-model="screenForm.serviceId" placeholder="选择表体业务员" size="mini" clearable filterable style="width: 100%">
|
|
|
<el-option
|
|
|
v-for="item in salesmanList"
|
|
|
:key="item.adminUserId"
|
|
@@ -104,6 +104,12 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="审核人" prop="approvalName">
|
|
|
+ <el-input v-model="screenForm.approvalName" placeholder="请输入审核人"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
<el-col :xs="24" :sm="24" :lg="24" class="tr">
|
|
|
<el-form-item label="">
|
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
@@ -377,7 +383,8 @@ export default {
|
|
|
mainOrderId: '',
|
|
|
k3ServiceId:'',
|
|
|
serviceId:'',
|
|
|
- categoryId: ''
|
|
|
+ categoryId: '',
|
|
|
+ approvalName:''
|
|
|
},
|
|
|
statusList: [
|
|
|
{ label: '已保存', value: 'SAVE' },
|
|
@@ -426,11 +433,12 @@ export default {
|
|
|
serviceId:this.screenForm.serviceId,
|
|
|
type: this.screenForm.orderType,
|
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
- categoryId: this.screenForm.categoryId
|
|
|
+ categoryId: this.screenForm.categoryId,
|
|
|
+ approvalName:this.screenForm.approvalName
|
|
|
}
|
|
|
},
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
watch: {
|
|
|
multipleSelection(data) { // 监听选中状态
|
|
|
this.selectRow = []
|
|
@@ -499,7 +507,9 @@ export default {
|
|
|
type: this.screenForm.orderType,
|
|
|
k3ServiceId:this.screenForm.k3ServiceId,
|
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
- categoryId: this.screenForm.categoryId
|
|
|
+ categoryId: this.screenForm.categoryId,
|
|
|
+ approvalName:this.screenForm.approvalName
|
|
|
+
|
|
|
};
|
|
|
getApplyList(params).then((res) => {
|
|
|
res.data.records.forEach(item => {
|
|
@@ -563,7 +573,7 @@ export default {
|
|
|
this.$nextTick(()=>{
|
|
|
this.$refs.refDetail.initPrint()
|
|
|
})
|
|
|
-
|
|
|
+
|
|
|
// this.$refs.refDetail.initPrint()
|
|
|
},
|
|
|
|