zhengyiming
3 天以前 7e8b2ef0804942de658b16f9eed2d3fbd01e865b
apps/cMiniApp/src/subpackages/wallet/mineWallet/InnerPage.vue
@@ -1,10 +1,17 @@
<template>
  <div class="mine-wallet-balance">
  <!-- <div class="mine-wallet-balance">
    <WithdrawMoneyCard :money="100" title="账户余额(元)"></WithdrawMoneyCard>
    <nut-button type="primary" class="mine-wallet-balance-btn" @click="goWithdraw">提现</nut-button>
  </div>
  </div> -->
  <List>
    <ListItem title="收入明细" @click="goIncomeDetail"> </ListItem>
    <ListItem title="支付宝账户" @click="goWithdraw">
      <template #extra>
        <div class="bind-bank-card">
          {{ isBinding ? '已绑定' : '未绑定、立即绑定' }}
        </div>
      </template>
    </ListItem>
  </List>
</template>
@@ -47,6 +54,7 @@
<style lang="scss">
@import '@/styles/common.scss';
.mineWallet-page-wrapper {
.mine-wallet-balance {
  text-align: center;
  padding-bottom: 60px;
@@ -66,4 +74,10 @@
    width: 60%;
  }
}
  .bind-bank-card {
    color: boleGetCssVar('text-color', 'regular');
    font-size: 24px;
  }
}
</style>