From 7cf04da7eaba7cad9c3b5e5f674d2e038ebcd305 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 12 九月 2025 17:36:56 +0800
Subject: [PATCH] Merge branch 'master' into dev-v1.1

---
 apps/cMiniApp/src/subpackages/wallet/mineWallet/InnerPage.vue |   54 +++++++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 43 insertions(+), 11 deletions(-)

diff --git a/apps/cMiniApp/src/subpackages/wallet/mineWallet/InnerPage.vue b/apps/cMiniApp/src/subpackages/wallet/mineWallet/InnerPage.vue
index bae21d2..894746e 100644
--- a/apps/cMiniApp/src/subpackages/wallet/mineWallet/InnerPage.vue
+++ b/apps/cMiniApp/src/subpackages/wallet/mineWallet/InnerPage.vue
@@ -1,21 +1,23 @@
 <template>
+  <!-- <div class="mine-wallet-balance">
+    <WithdrawMoneyCard :money="100" title="璐︽埛浣欓(鍏�)"></WithdrawMoneyCard>
+    <nut-button type="primary" class="mine-wallet-balance-btn" @click="goWithdraw">鎻愮幇</nut-button>
+  </div> -->
   <List>
     <ListItem title="鏀跺叆鏄庣粏" @click="goIncomeDetail"> </ListItem>
-    <ListItem title="閾惰鍗�" @click="goBankBind">
+    <!-- <ListItem title="鏀粯瀹濊处鎴�" @click="goWithdraw">
       <template #extra>
         <div class="bind-bank-card">
           {{ isBinding ? '宸茬粦瀹�' : '鏈粦瀹氥�佺珛鍗崇粦瀹�' }}
         </div>
       </template>
-    </ListItem>
+    </ListItem> -->
   </List>
 </template>
 
 <script setup lang="ts">
-import { List, ListItem } from '@12333/components';
-import { useUserStore } from '@/stores/modules/user';
+import { List, ListItem, WithdrawMoneyCard } from '@12333/components';
 import Taro from '@tarojs/taro';
-import { Message } from '@12333/utils';
 
 defineOptions({
   name: 'InnerPage',
@@ -31,21 +33,51 @@
   });
 }
 
-const goBankBind = useAccessReal(
+const goWithdraw = useAccessReal(
   () => {
     Taro.navigateTo({
-      url: `${isBinding.value ? RouterPath.bindBankCard : RouterPath.unboundBankCard}`,
+      url: `${RouterPath.withdraw}`,
     });
   },
-  { message: '瀹屾垚瀹炲悕璁よ瘉鍚庢墠鍙繘琛岄摱琛屽崱缁戝畾' }
+  { message: '瀹屾垚瀹炲悕璁よ瘉鍚庢墠鍙彁鐜�' }
 );
+// const goBankBind = useAccessReal(
+//   () => {
+//     Taro.navigateTo({
+//       url: `${isBinding.value ? RouterPath.bindBankCard : RouterPath.unboundBankCard}`,
+//     });
+//   },
+//   { message: '瀹屾垚瀹炲悕璁よ瘉鍚庢墠鍙繘琛岄摱琛屽崱缁戝畾' }
+// );
 </script>
 
 <style lang="scss">
 @import '@/styles/common.scss';
 
-.bind-bank-card {
-  color: boleGetCssVar('text-color', 'regular');
-  font-size: 24px;
+.mineWallet-page-wrapper {
+  .mine-wallet-balance {
+    text-align: center;
+    padding-bottom: 60px;
+
+    .mine-wallet-balance-item {
+      font-size: 28px;
+      font-weight: 500;
+      margin-bottom: 40px;
+
+      &.money {
+        font-size: 48px;
+        font-weight: 500;
+      }
+    }
+
+    .mine-wallet-balance-btn {
+      width: 60%;
+    }
+  }
+
+  .bind-bank-card {
+    color: boleGetCssVar('text-color', 'regular');
+    font-size: 24px;
+  }
 }
 </style>

--
Gitblit v1.9.1