revert 解决冲突报错
This commit is contained in:
2025-11-27 15:37:53 +08:00
parent 21a3335939
commit d209c05a18
2 changed files with 18 additions and 15 deletions

View File

@@ -44,11 +44,11 @@
<view class="vip-card wallet_l"> <view class="vip-card wallet_l">
<view class="assets"> <view class="assets">
<view @click="goVirtualList"> <view @click="goVirtualList">
<view class="assets_row">{{ $t('global.coin') }}</view> <view class="assets_row">{{ t('global.coin') }}</view>
<view>{{userInfo.peanutCoin ?? 1}}</view> <view>{{userInfo.peanutCoin ?? 1}}</view>
</view> </view>
<view @click="goPointsList"> <view @click="goPointsList">
<view class="assets_row">{{ $t('order.points') }}</view> <view class="assets_row">积分</view>
<view>{{userInfo.jf ?? 1}}</view> <view>{{userInfo.jf ?? 1}}</view>
</view> </view>
<!-- <view> <!-- <view>
@@ -56,7 +56,7 @@
<view>0</view> <view>0</view>
</view> --> </view> -->
</view> </view>
<view class="chong_btn" @click="goRecharge">{{ $t('user.recharge') }}</view> <view class="chong_btn" @click="goRecharge"> </view>
<!-- <text class="wallet_title">{{$t('my.coin')}}<uni-icons type="help" size="19" color="#666"></uni-icons></text> <!-- <text class="wallet_title">{{$t('my.coin')}}<uni-icons type="help" size="19" color="#666"></uni-icons></text>
<text class="wallet_count">{{userMes.peanutCoin}}</text> --> <text class="wallet_count">{{userMes.peanutCoin}}</text> -->
</view> </view>
@@ -148,18 +148,21 @@
* 获取数据 * 获取数据
*/ */
const getData = async () => { const getData = async () => {
console.log(userInfo.value);
try {
// 获取用户信息
const userRes = await getUserInfo() const userRes = await getUserInfo()
console.log(userRes); console.log(userRes, '-----userRes');
if (userRes.result) { if (userRes.result) {
userStore.setUserInfo(userRes.result) userStore.setUserInfo(userRes.result)
} }
// 获取VIP信息 // 获取VIP信息
const vipRes = await getVipInfo() const vipRes = await getVipInfo()
if (vipRes.vipInfo) { if (vipRes.vipInfo) {
vipInfo.value = vipRes.vipInfo vipInfo.value = vipRes.vipInfo
} }
} }}
/** /**
* 跳转到设置页面 * 跳转到设置页面
@@ -214,7 +217,7 @@
url: '/pages/user/recharge/index' url: '/pages/user/recharge/index'
}) })
} }
/** /**
* 跳转虚拟币页面 * 跳转虚拟币页面
*/ */
@@ -223,7 +226,7 @@
url: '/pages/user/virtual/index' url: '/pages/user/virtual/index'
}) })
} }
/** /**
* 跳转积分列表 * 跳转积分列表
*/ */
@@ -232,11 +235,11 @@
url: '/pages/user/points/index' url: '/pages/user/points/index'
}) })
} }
onShow(() => { onShow(() => {
getData() getData()
}) })
onMounted(() => { onMounted(() => {
getPlatform() getPlatform()
}) })
@@ -389,7 +392,7 @@
flex: 1; flex: 1;
justify-content: space-around; justify-content: space-around;
text-align: center; text-align: center;
transform: translateX(-20px); transform:translateX(-20px);
.assets_row { .assets_row {
margin-bottom: 20rpx; margin-bottom: 20rpx;

View File

@@ -9,7 +9,7 @@
:class="aloneItem.priceTypeId === item.priceTypeId ? 'selected' : ''" :class="aloneItem.priceTypeId === item.priceTypeId ? 'selected' : ''"
v-for="item in rechargeList.bookBuyConfigList" :key="item.priceTypeId"> v-for="item in rechargeList.bookBuyConfigList" :key="item.priceTypeId">
<view class="recharge_money">{{item.realMoney}}</view> <view class="recharge_money">{{item.realMoney}}</view>
<view>{{item.money}}{{$t('global.coin')}}</view> <view>{{item.money}}{{$t('order.virtualCoin')}}</view>
<!-- 红框位置的618活动标签 --> <!-- 红框位置的618活动标签 -->
<!-- <view class="activity-tag">618活动</view> --> <!-- <view class="activity-tag">618活动</view> -->
<span class="activity-label" v-if="item.givejf >0">618充值活动</span> <span class="activity-label" v-if="item.givejf >0">618充值活动</span>