|
@@ -216,7 +216,7 @@ export default {
|
|
|
// console.log('订单数据列表', this.orderListData)
|
|
|
this.pagination = {
|
|
|
total: res.result.total,
|
|
|
- current: 1,
|
|
|
+ current: res.result.current,
|
|
|
pageSize: res.result.size
|
|
|
}
|
|
|
}
|
|
@@ -230,7 +230,7 @@ export default {
|
|
|
on: {
|
|
|
click: event => {
|
|
|
this.$refs.orderDetailDrawer.visible = true
|
|
|
- this.$refs.orderDetailDrawer.record = record//接口参数
|
|
|
+ this.$refs.orderDetailDrawer.record = record //接口参数
|
|
|
this.$refs.orderDetailDrawer.getOrderChild()
|
|
|
this.$refs.orderDetailDrawer.orderDetail = record //详情页主表赋值
|
|
|
}
|
|
@@ -239,12 +239,12 @@ export default {
|
|
|
},
|
|
|
// 查询按钮
|
|
|
searchQuery() {
|
|
|
+ this.queryParam.pageNo = ''
|
|
|
this.getOrderList()
|
|
|
- console.log('发货状态', this.queryParam.dilivery)
|
|
|
+ // console.log('发货状态', this.queryParam.dilivery)
|
|
|
},
|
|
|
|
|
|
searchReset() {
|
|
|
- // console.log('>>>>重置')
|
|
|
this.queryParam = {}
|
|
|
this.getOrderList()
|
|
|
},
|