店铺对账状态默认值问题处理
parent
d86b5c609b
commit
011bcae11a
|
@ -189,7 +189,7 @@ export default {
|
||||||
(this.searchForm.endTime = this.$options.filters.unixToDate(
|
(this.searchForm.endTime = this.$options.filters.unixToDate(
|
||||||
this.searchForm.endTime / 1000
|
this.searchForm.endTime / 1000
|
||||||
));
|
));
|
||||||
this.searchForm.billStatus = "OUT";
|
this.searchForm.billStatus = "CHECK";
|
||||||
API_Shop.getBuyBillPage(this.searchForm).then((res) => {
|
API_Shop.getBuyBillPage(this.searchForm).then((res) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
|
|
@ -225,7 +225,7 @@
|
||||||
},
|
},
|
||||||
getDataList() {
|
getDataList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.searchForm.billStatus = "CHECK"
|
this.searchForm.billStatus = "OUT"
|
||||||
API_Shop.getBillPage(this.searchForm).then((res) => {
|
API_Shop.getBillPage(this.searchForm).then((res) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
|
Loading…
Reference in New Issue