添加的功能:查看推广码对应的结算记录

This commit is contained in:
2025-06-09 19:08:32 +08:00
parent 38ba528f76
commit c0c6b5b61a
23 changed files with 131 additions and 86 deletions

View File

@ -57,11 +57,12 @@ Page({
})
}
if (res.data.code === 1) {
let result = res.data.data
this.setData({
currentBalance: res.data.data.currentBalance,
withdrawalAmount: res.data.data.withdrawalAmount,
withdrawnAmount: res.data.data.withdrawnAmount,
fundsChangeVOList: res.data.data.fundsChangeVOList
currentBalance: result.currentBalance,
withdrawalAmount: result.withdrawalAmount,
withdrawnAmount: result.withdrawnAmount,
fundsChangeVOList: result.fundsChangeVOList
});
}
}

View File

@ -9,11 +9,11 @@
<view class="flex-row self-stretch group_2">
<view class="flex-row items-baseline">
<text class="font text_4">提现中</text>
<text class="ml-8 font_2">{{withdrawalAmount}}</text> <!-- 提现中的余额 -->
<text class="ml-8 font_2">{{withdrawalAmount}}</text> <!-- 提现中的余额 -->
</view>
<view class="flex-row items-baseline ml-33">
<text class="font text_5">已提现</text>
<text class="font_2 ml-7">{{withdrawnAmount}}</text> <!-- 已提现金额 -->
<text class="font_2 ml-7">{{withdrawnAmount}}</text> <!-- 已提现金额 -->
</view>
</view>
</view>
@ -42,11 +42,11 @@
<view class="flex-col list-item mt-13" wx:for="{{fundsChangeVOList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
<view class="flex-row">
<text class="flex-1 font_4">{{item.projectName}}</text> <!-- 项目名称 -->
<text class="shrink-0 self-start font_5 text_9 ml-21">{{item.changeAmount}}</text> <!-- 变动金额 -->
<text class="shrink-0 self-start font_5 text_9 ml-21">{{item.changeAmount}}</text> <!-- 变动金额 -->
</view>
<view class="mt-12 flex-row justify-between items-center">
<text class="font_6 text_10">{{item.createTime}}</text> <!-- 创建时间 -->
<text class="font_3">{{item.currentAmount}}</text> <!-- 当前金额 -->
<text class="font_3">{{item.currentAmount}}</text> <!-- 当前金额 -->
</view>
</view>
</view>