diff --git a/manager/src/views/seller/bill/accountStatementBill.vue b/manager/src/views/seller/bill/accountStatementBill.vue index 8ef67236..bf494d0f 100644 --- a/manager/src/views/seller/bill/accountStatementBill.vue +++ b/manager/src/views/seller/bill/accountStatementBill.vue @@ -189,7 +189,7 @@ export default { (this.searchForm.endTime = this.$options.filters.unixToDate( this.searchForm.endTime / 1000 )); - this.searchForm.billStatus = "OUT"; + this.searchForm.billStatus = "CHECK"; API_Shop.getBuyBillPage(this.searchForm).then((res) => { this.loading = false; if (res.success) { diff --git a/seller/src/views/shop/bill/accountStatementBill.vue b/seller/src/views/shop/bill/accountStatementBill.vue index 6e62f342..e944f432 100644 --- a/seller/src/views/shop/bill/accountStatementBill.vue +++ b/seller/src/views/shop/bill/accountStatementBill.vue @@ -225,7 +225,7 @@ }, getDataList() { this.loading = true; - this.searchForm.billStatus = "CHECK" + this.searchForm.billStatus = "OUT" API_Shop.getBillPage(this.searchForm).then((res) => { this.loading = false; if (res.success) {