|
@@ -35,7 +35,7 @@
|
|
|
<el-col :xs="24" :sm="12" :lg="6">
|
|
|
<el-form-item label="单据日期" prop="date">
|
|
|
<el-date-picker
|
|
|
- v-model="screenForm.date"
|
|
|
+ v-model="screenForm.orderDate"
|
|
|
type="datetimerange"
|
|
|
range-separator="至"
|
|
|
style="width: 100%;"
|
|
@@ -310,6 +310,7 @@ export default {
|
|
|
status: [],
|
|
|
salesMan: '',
|
|
|
model: '',
|
|
|
+ orderDate: ''
|
|
|
},
|
|
|
statusList: [
|
|
|
{ label: '已保存', value: 'SAVE' },
|
|
@@ -343,6 +344,8 @@ export default {
|
|
|
projectNo: this.screenForm.enginNum,
|
|
|
enginSignType: this.screenForm.loginNum,
|
|
|
projectName: this.screenForm.enginName,
|
|
|
+ startOrderDate: this.screenForm.orderDate ? this.screenForm.orderDate[0] : '',
|
|
|
+ endOrderDate: this.screenForm.orderDate ? this.screenForm.orderDate[1] : '',
|
|
|
startContractExpireDate: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
|
endContractExpireDate: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
customerKeyWord: this.screenForm.dealer,
|
|
@@ -389,6 +392,8 @@ export default {
|
|
|
projectNo: this.screenForm.enginNum,
|
|
|
enginSignType: this.screenForm.loginNum,
|
|
|
projectName: this.screenForm.enginName,
|
|
|
+ startOrderDate: this.screenForm.orderDate ? this.screenForm.orderDate[0] : '',
|
|
|
+ endOrderDate: this.screenForm.orderDate ? this.screenForm.orderDate[1] : '',
|
|
|
startContractExpireDate: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
|
endContractExpireDate: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
customerKeyword: this.screenForm.dealer,
|