no message

This commit is contained in:
2025-11-11 20:16:15 +08:00
parent ad378f164d
commit 806a074ce7
9 changed files with 1020 additions and 296 deletions
+9 -6
View File
@@ -1,8 +1,9 @@
<template>
<view class="content top-view">
<TopSafe bgColor="rgba(0,0,0,0)"></TopSafe>
<Header bgColor="rgba(0,0,0,0)" color="#fff" title="数字积分兑换" />
<view class="top-panel">
<TopSafe bgColor="rgba(0,0,0,0)"></TopSafe>
<Header bgColor="rgba(0,0,0,0)" color="#fff" title="数字积分兑换" style="min-height:88rpx;" />
<text class="text-24 text-white" style="margin-top:24rpx">股东行权</text>
<text class="text-88 text-white text-bold" style="margin-top:24rpx">{{ curData ? curData.curAmount : 0 }}
<text class="text-44 text-white">数字积分(TBC)</text>
@@ -69,7 +70,7 @@ export default {
exchUsers(){
getExchUsers().then(res=>{
if (res && res.bizcode === 100) {
this.dataList = res.data.entitys || [];
this.dataList = res.data.entitys ? res.data.entitys : [];
}
})
},
@@ -106,7 +107,7 @@ export default {
})
}else if(index == 1){
uni.navigateTo({
url: '/pages/rwa_package/rwa_binding/rwa_binding',
url: '/pages/rwa_package/rwa_withdrawal/rwa_withdrawal',
})
}
this.onClose();
@@ -134,10 +135,10 @@ export default {
width:100%;
display: flex;
flex-direction: column;
height:calc(100vh - 88rpx - 298rpx - var(--status-bar-height));
height:calc(100vh - 418rpx - 32rpx - var(--status-bar-height));
background-color: #fff;
border-radius: 24rpx 24rpx 0 0;
padding: 0 32rpx;
padding: 0 32rpx 32rpx;
margin-top:32rpx;
box-sizing: border-box;
.bottom-head-view{
@@ -166,10 +167,12 @@ export default {
}
}
.top-panel{
width:100%;
display: flex;
flex-direction: column;
min-height:calc(330rpx + 88rpx + var(--status-bar-height));
padding: 0 32rpx;
box-sizing: border-box;