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
+3 -3
View File
@@ -16,17 +16,17 @@
<view class="flex-1 text-center">
<view class="text-14">全部</view>
<view class="text-16 font-bold mt-15">
{{ userStore.userInfo.yanglao + userStore.userInfo.yiliao }}
{{ userStore.userInfo?.yanglao + userStore.userInfo?.yiliao }}
</view>
</view>
<view class="flex-1 text-center">
<view class="text-14">养老</view>
<view class="text-16 font-bold mt-15">{{ userStore.userInfo.yanglao }}</view>
<view class="text-16 font-bold mt-15">{{ userStore.userInfo?.yanglao }}</view>
</view>
<view class="flex-1 text-center">
<view class="text-14">医疗</view>
<view class="text-16 font-bold mt-15">
{{ userStore.userInfo.yiliao ? '保障中' : '未保障' }}
{{ userStore.userInfo?.yiliao ? '保障中' : '未保障' }}
</view>
</view>
</view>