营销:适配商城装修组件【用户资产】

pull/20/head
owen 2023-12-01 23:40:06 +08:00
parent fc9359a8ae
commit ff6788b685
2 changed files with 7 additions and 7 deletions

View File

@ -48,10 +48,10 @@
<s-user-card v-if="type === 'UserCard'" />
<!-- 用户组件用户订单 -->
<s-order-card v-if="type === 'UserOrder'" :data="data" />
<!-- 用户组件资产卡片 -->
<s-wallet-card v-if="type === 'walletCard'" />
<!-- 用户组件卡券卡片 -->
<s-coupon-card v-if="type === 'couponCard'" />
<!-- 用户组件用户资产 -->
<s-wallet-card v-if="type === 'UserWallet'" />
<!-- 用户组件用户卡券 -->
<s-coupon-card v-if="type === 'UserCoupon'" />
</view>
</template>

View File

@ -5,7 +5,7 @@
@tap="sheep.$router.go('/pages/user/wallet/money')"
>
<view class="value-box ss-flex ss-col-bottom">
<view class="value-text ss-line-1">{{ userInfo.money }}</view>
<view class="value-text ss-line-1">{{ userInfo.money || '0.00' }}</view>
<view class="unit-text ss-m-l-6"></view>
</view>
<view class="menu-title ss-m-t-28">账户余额</view>
@ -23,7 +23,7 @@
@tap="sheep.$router.go('/pages/user/wallet/score')"
>
<view class="value-box ss-flex ss-col-bottom">
<view class="value-text">{{ userInfo.score }}</view>
<view class="value-text">{{ userInfo.score || 0 }}</view>
<view class="unit-text ss-m-l-6"></view>
</view>
<view class="menu-title ss-m-t-28">积分</view>
@ -37,7 +37,7 @@
"
>
<view class="value-box ss-flex ss-col-bottom">
<view class="value-text">{{ numData.coupons_num }}</view>
<view class="value-text">{{ numData.coupons_num || 0 }}</view>
<view class="unit-text ss-m-l-6"></view>
</view>
<view class="menu-title ss-m-t-28">优惠券</view>