优化积分兑换记录

This commit is contained in:
gyq
2025-12-12 15:07:09 +08:00
parent d075a346b8
commit ade25a0880
5 changed files with 71 additions and 9 deletions

View File

@@ -2,10 +2,10 @@
<view>
<view class="header-wrap">
<view class="item">
<text class="t">用户昵称 {{ listData.nickName }}</text>
<text class="t">{{ listData.nickName }} {{ listData.phone }}</text>
</view>
<view class="item">
<text class="t">当前积分 {{ listData.phone }}</text>
<text class="t">当前积分 {{ listData.point }}</text>
</view>
</view>
<view class="list">
@@ -40,6 +40,7 @@ const listData = reactive({
nickName: '',
phone: '',
id: '',
point: '',
page: 1,
size: 10,
status: 'loading',
@@ -80,6 +81,7 @@ onLoad((options) => {
listData.id = options.id;
listData.nickName = options.nickName;
listData.phone = options.phone;
listData.point = options.point;
pointUserRecordAjax();
});
</script>