From b9a89d7c4011d254a125b2c39bda012b17bf13f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?lemon=E6=A9=AA?= <17633066053@163.com> Date: Mon, 14 Feb 2022 14:31:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=86=E9=94=80=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E5=88=86=E9=94=80=E4=B8=9A=E7=BB=A9=E8=AF=A6=E7=BB=86?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/mine/distribution/history.vue | 49 +++++++++++++++++++++++------ 1 file changed, 39 insertions(+), 10 deletions(-) diff --git a/pages/mine/distribution/history.vue b/pages/mine/distribution/history.vue index f0444a4..875893f 100644 --- a/pages/mine/distribution/history.vue +++ b/pages/mine/distribution/history.vue @@ -1,7 +1,12 @@ @@ -86,7 +102,7 @@ export default { }); distributionOrderList(this.achParams).then((res) => { if (res.data.success && res.data.result.records.length >= 1) { - this.achievementData = res.data.result.records; + this.achievementData.push(...res.data.result.records); } else { this.status = "nomore"; this.empty = true; @@ -101,7 +117,7 @@ export default { }); cashLog(this.params).then((res) => { if (res.data.success && res.data.result.records.length >= 1) { - this.cashLogData = res.data.result.records; + this.cashLogData.push(...res.data.result.records); } else { this.status = "nomore"; this.empty = true; @@ -139,6 +155,19 @@ export default { .log-item-view { padding: 8rpx 32rpx; display: flex; + font-size: 13px; justify-content: space-between; } - \ No newline at end of file +.log-item-footer { + padding: 8rpx 32rpx; + display: flex; + font-size: 13px; + justify-content: space-between; +} +.log-item-footers { + padding: 8rpx 32rpx; + display: flex; + font-size: 13px; + justify-content: space-between; +} +