wupengfei
8 小时以前 0fabf30c77af428010f0a9f34de8faffbb9909b3
apps/cMiniApp/src/subpackages/wallet/mineWallet/InnerPage.vue
@@ -5,6 +5,7 @@
  </div> -->
  <List>
    <ListItem title="收入明细" @click="goIncomeDetail"> </ListItem>
    <template v-if="!hideTemplate">
    <ListItem title="银行卡" @click="goBankBind">
      <template #extra>
        <div class="bind-bank-card">
@@ -19,6 +20,8 @@
        </div>
      </template>
    </ListItem>
    </template>
    <ListItem title="微信">
      <template #extra>
        <div class="bind-bank-card">
@@ -30,6 +33,7 @@
</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';
@@ -38,8 +42,12 @@
  name: 'InnerPage',
});
const systemStore = useSystemStore();
const { userDetail, isBindBank, isBindAlipay, isBindWechat } = useUser();
const hideTemplate = computed(() => systemStore.isWeappCheck);
function goIncomeDetail() {
  Taro.navigateTo({
    url: `${RouterPath.incomeDetail}`,