From 230bee5a9c2f50cfeb813f7774c3542893aa14b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BD=90=E5=A4=A9=E5=A4=A7=E5=9C=A3?= <17615834396@163.com> Date: Sat, 9 Dec 2023 09:34:35 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A4=BC=E5=93=81=E5=8D=A1=E5=85=91=E6=8D=A2?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gasStation-uni/pagesMy/Recharge/Recharge.vue | 42 +------------------- 1 file changed, 2 insertions(+), 40 deletions(-) diff --git a/gasStation-uni/pagesMy/Recharge/Recharge.vue b/gasStation-uni/pagesMy/Recharge/Recharge.vue index 32025928d..f0c1067b6 100644 --- a/gasStation-uni/pagesMy/Recharge/Recharge.vue +++ b/gasStation-uni/pagesMy/Recharge/Recharge.vue @@ -108,6 +108,7 @@ methods: { tapindex(index) { this.tindex = index + this.list = [] if (index == 0) { this.query.recordName = '' } else if (index == 1) { @@ -141,46 +142,6 @@ } }) }, - // 查询储值卡充值订单 - getCarOrderList() { - request({ - url: 'business/marketingActivity/cardValueRecord/selectCardRecord', - method: 'get', - params: this.query - - }).then((res) => { - if (res.code == 200) { - if (this.pageNo != 1) { - this.list = this.list.concat(res.data.records) - } else { - this.list = res.data.records - } - this.totalDetail = res.data.total - this.show = false - uni.hideLoading(); - } - }) - }, - // 查询囤油卡充值订单 - getFuleOrderList() { - request({ - url: 'business/marketingActivity/cardValueRecord/selectFuleRecord', - method: 'get', - params: this.query - - }).then((res) => { - if (res.code == 200) { - if (this.pageNo != 1) { - this.list = this.list.concat(res.data.records) - } else { - this.list = res.data.records - } - this.totalDetail = res.data.total - this.show = false - uni.hideLoading(); - } - }) - }, } } @@ -189,6 +150,7 @@