| | |
| | | </div> --> |
| | | <List> |
| | | <ListItem title="收入明细" @click="goIncomeDetail"> </ListItem> |
| | | <template v-if="!hideTemplate"> |
| | | <ListItem title="银行卡" @click="goBankBind"> |
| | | <template #extra> |
| | | <div class="bind-bank-card"> |
| | |
| | | </div> |
| | | </template> |
| | | </ListItem> |
| | | </template> |
| | | |
| | | <ListItem title="微信"> |
| | | <template #extra> |
| | | <div class="bind-bank-card"> |
| | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { useSystemStore } from '@/stores/modules/system'; |
| | | import { List, ListItem, WithdrawMoneyCard } from '@12333/components'; |
| | | import { EnumUserBankCardAccess } from '@12333/constants'; |
| | | import Taro from '@tarojs/taro'; |
| | |
| | | name: 'InnerPage', |
| | | }); |
| | | |
| | | const systemStore = useSystemStore(); |
| | | |
| | | const { userDetail, isBindBank, isBindAlipay, isBindWechat } = useUser(); |
| | | |
| | | const hideTemplate = computed(() => systemStore.isWeappCheck); |
| | | |
| | | function goIncomeDetail() { |
| | | Taro.navigateTo({ |
| | | url: `${RouterPath.incomeDetail}`, |