|
@@ -172,12 +172,16 @@ export default {
|
|
|
salesType: '',
|
|
|
isShowDatePicker: false,
|
|
|
datePickerValue: Number(new Date()),
|
|
|
- date: ''
|
|
|
+ date: '',
|
|
|
+ oid: ''
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- onLoad({ type }) {
|
|
|
+ onLoad({ type, oid }) {
|
|
|
this.type = type
|
|
|
+ if (oid) {
|
|
|
+ this.oid = oid
|
|
|
+ }
|
|
|
this.getCount()
|
|
|
this.getList()
|
|
|
},
|
|
@@ -201,6 +205,7 @@ export default {
|
|
|
this.loadStatus = 1
|
|
|
this.$api
|
|
|
.post('/pay/orderPage', {
|
|
|
+ orderId: this.oid,
|
|
|
pageNum: this.pageNum,
|
|
|
pageSize: 10,
|
|
|
payStatus: this.status,
|