This commit is contained in:
anonymous
2025-01-09 16:59:43 +08:00
parent 79debee112
commit 1f28b06a5c
6 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -21,7 +21,7 @@
class="m-15 text-white flex rounded-tl-10 rounded-br-10 justify-between items-center p-15 bg-[linear-gradient(90deg,rgba(59,129,243,0.5),#3B81F3)]"
>
<view class="text-14">钱包余额</view>
<view class="text-17 font-bold">{{ userStore.userInfo.money }}</view>
<view class="text-17 font-bold">{{ userStore.userInfo?.money }}</view>
</view>
<view class="p-15 bg-white shadow-[0_-2px_3px_rgba(10,68,245,0.1)] rounded-10">
<view class="mt-15">
@@ -35,7 +35,7 @@
placeholder="请输入提现金额"
class="text-14 text-#333 flex-1"
/>
<view class="text-12 text-#04A9F9" @click="form.money = userStore.userInfo.money">
<view class="text-12 text-#04A9F9" @click="form.money = userStore.userInfo?.money">
全部
</view>
</view>