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; +} +