修复拼团详情显示问题,增加商品下架弹窗提醒·,订单详情和结算成功增加会员折扣展示,修改用户中心页面积分列表积分余额显示字段,调整套餐商品详情商品显示样式

This commit is contained in:
2025-12-23 13:33:09 +08:00
parent 624056758d
commit 252243fa7b
7 changed files with 92 additions and 31 deletions

View File

@@ -124,7 +124,7 @@
</image>
<text class="color-333 font-14 u-m-l-20">积分</text>
</view>
<view class="u-flex color-666" @click="toCoin">
<view class="u-flex color-666" @click="toCoin()">
<text class="font-12 u-m-r-4">{{ coinTotal }}家店</text>
<up-icon name="arrow-down" color="#666" size="12px"></up-icon>
</view>
@@ -138,7 +138,7 @@
<view class="color-333 u-m-t-14">
<text class="font-10">¥</text>
<text class="font-16 font-700">{{
item.accountPoints || "0.00"
item.pointBalance || "0.00"
}}</text>
</view>
<view class="font-12 color-666 u-line-1">{{
@@ -147,7 +147,7 @@
</view>
</view>
<view class="u-flex u-flex-column u-flex-center" style="width: 12px" v-if="coinList.length"
@click="toCoin">
@click="toCoin()">
<view class="text-center color-333 font-12">查看全部</view>
</view>
</view>
@@ -163,7 +163,7 @@
</view>
<view class="my_list_item_right u-flex">
<text v-if="item.type == 'score'" class="font-12">{{
userInfo.accountPoints || 0
userInfo.pointBalance || 0
}}</text>
<!-- <text v-else-if="item.type=='my_coupon'" class="font-12 ">{{userInfo.couponNum || 0}}</text> -->
<text class="font-12 color-999" v-else>查看</text>
@@ -434,7 +434,13 @@
coinList.value = res3;
}
function toCoin() {
function toCoin(item) {
if(item){
uni.navigateTo({
url: "/pages/user/member/billDetails?type=2&shopId="+item.shopId+"&id="+(item.id||''),
});
return
}
uni.navigateTo({
url: "/user/score/list",
});