|
@@ -16,7 +16,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-col :span="6">
|
|
<a-form-item label="用户手机" :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol">
|
|
<a-form-item label="用户手机" :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol">
|
|
- <a-input id="shopOrder-contactPhone" allowClear :maxLength="11" v-model="queryParam.contactPhone" placeholder="请输入用户手机" />
|
|
|
|
|
|
+ <a-input id="shopOrder-customerMobile" allowClear :maxLength="11" v-model="queryParam.customerMobile" placeholder="请输入用户手机" />
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-col :span="6">
|
|
@@ -30,7 +30,7 @@
|
|
v-model="queryParam.orderState"
|
|
v-model="queryParam.orderState"
|
|
ref="orderState"
|
|
ref="orderState"
|
|
id="shopOrder-status"
|
|
id="shopOrder-status"
|
|
- code="SETTLE_STATUS_ALL"
|
|
|
|
|
|
+ code="ORDER_STATE"
|
|
placeholder="请选择订单状态"
|
|
placeholder="请选择订单状态"
|
|
allowClear></v-select>
|
|
allowClear></v-select>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
@@ -91,7 +91,7 @@ export default {
|
|
queryParam: {
|
|
queryParam: {
|
|
beginDate: null, // 开始时间
|
|
beginDate: null, // 开始时间
|
|
endDate: null, // 结束时间
|
|
endDate: null, // 结束时间
|
|
- contactPhone: '', // 用户手机
|
|
|
|
|
|
+ customerMobile: '', // 用户手机
|
|
orderNo: '', // 订单编号
|
|
orderNo: '', // 订单编号
|
|
orderState: null // 订单状态
|
|
orderState: null // 订单状态
|
|
},
|
|
},
|
|
@@ -161,7 +161,7 @@ export default {
|
|
moment(getDate.getToday().starttime, this.dateFormat),
|
|
moment(getDate.getToday().starttime, this.dateFormat),
|
|
moment(getDate.getToday().endtime, this.dateFormat)
|
|
moment(getDate.getToday().endtime, this.dateFormat)
|
|
]
|
|
]
|
|
- this.queryParam.contactPhone = ''
|
|
|
|
|
|
+ this.queryParam.customerMobile = ''
|
|
this.queryParam.orderNo = ''
|
|
this.queryParam.orderNo = ''
|
|
this.queryParam.orderState = null
|
|
this.queryParam.orderState = null
|
|
this.$refs.table.refresh(true)
|
|
this.$refs.table.refresh(true)
|
|
@@ -171,7 +171,7 @@ export default {
|
|
const params = {
|
|
const params = {
|
|
beginDate: this.queryParam.beginDate == null ? getDate.getToday().starttime : this.queryParam.beginDate,
|
|
beginDate: this.queryParam.beginDate == null ? getDate.getToday().starttime : this.queryParam.beginDate,
|
|
endDate: this.queryParam.endDate == null ? getDate.getToday().endtime : this.queryParam.endDate,
|
|
endDate: this.queryParam.endDate == null ? getDate.getToday().endtime : this.queryParam.endDate,
|
|
- contactPhone: this.queryParam.contactPhone,
|
|
|
|
|
|
+ customerMobile: this.queryParam.customerMobile,
|
|
orderNo: this.queryParam.orderNo,
|
|
orderNo: this.queryParam.orderNo,
|
|
orderState: this.queryParam.orderState
|
|
orderState: this.queryParam.orderState
|
|
}
|
|
}
|