更新:天医币、积分列表增加跳转订单详情页。修改活动说明字体样式

This commit is contained in:
2025-12-04 14:08:57 +08:00
parent 48a4fb20a6
commit 871eecb889
5 changed files with 65 additions and 11 deletions

View File

@@ -14,7 +14,7 @@
<view><wd-icon name="arrow-right" size="16px" color="#fff" /></view>
</view>
<view class="title">{{$t('order.rechargeConsumptionList')}}</view>
<view class="recharge-record-block" v-for="(item, index) in bookList" :key="index">
<view class="recharge-record-block" v-for="(item, index) in bookList" :key="index" @click="toDetails(item)">
<view class="recharge-record-block-row">{{item.orderType}}<text
:class="item.orderType !== '充值' ? 'text1' : 'text2'">{{item.orderType !== '充值' ? '' : '+'}}{{item.changeAmount}}</text>
</view>
@@ -70,6 +70,16 @@
url: '/pages/user/recharge/index'
})
}
/**
* 跳转订单详情
*/
const toDetails = (order: IOrder) => {
console.log(order.relationId, "order");
uni.navigateTo({
url: '/pages/user/order/details?orderId=' + order.relationId
})
}
</script>
<style lang="scss" scoped>