diff --git a/jsowell-ui/src/views/pile/merchant/components/revenue.vue b/jsowell-ui/src/views/pile/merchant/components/revenue.vue index 3961fa6ed..e2b464765 100644 --- a/jsowell-ui/src/views/pile/merchant/components/revenue.vue +++ b/jsowell-ui/src/views/pile/merchant/components/revenue.vue @@ -97,7 +97,11 @@ - + @@ -161,6 +165,17 @@ export default { }; }, methods: { + orderClose(done) { + this.$confirm("确认关闭?") + .then((res) => { + done(); + this.getOrderParams.pageNum = 1; + this.orderList = []; + }) + .catch((err) => { + console.log("取消 err", err); + }); + }, getOrderList() { console.log("this.getOrderParams", this.getOrderParams); getOrderReportDetail(this.getOrderParams).then((res) => {