From e0cb82c8dbf83fabc0cab548abc873926366fb75 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 21 五月 2025 17:29:15 +0800
Subject: [PATCH] fix: 修改ui

---
 apps/taro/src/subpackages/recharge/gasBillRecharge/InnerPage.vue |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/apps/taro/src/subpackages/recharge/gasBillRecharge/InnerPage.vue b/apps/taro/src/subpackages/recharge/gasBillRecharge/InnerPage.vue
index a545c37..cee63c6 100644
--- a/apps/taro/src/subpackages/recharge/gasBillRecharge/InnerPage.vue
+++ b/apps/taro/src/subpackages/recharge/gasBillRecharge/InnerPage.vue
@@ -1,5 +1,5 @@
 <template>
-  <ContentScrollView :paddingH="false" style="background-color: #fff">
+  <ContentScrollView hasPaddingTop style="background-color: transparent">
     <GasBillRecharge
       @goPay="goPay"
       :isDev="isDev"
@@ -13,6 +13,8 @@
       :showAliPay="!isInWeChat"
       :showWeixinPay="isInWeChat"
       @missName="handleMissName"
+      @editUserAccount="handleEditUserAccount"
+      @currentChange="emit('currentChange', $event)"
     />
   </ContentScrollView>
 </template>
@@ -29,6 +31,10 @@
 defineOptions({
   name: 'InnerPage',
 });
+
+const emit = defineEmits<{
+  (e: 'currentChange', current: 'step1' | 'step2' | 'step3'): void;
+}>();
 
 const isDev = process.env.NODE_ENV === 'development';
 
@@ -56,4 +62,10 @@
     });
   } catch (error) {}
 }
+
+function handleEditUserAccount(userAccountId: string) {
+  RouteHelper.navigateTo({
+    url: `${RouterPath.editGasUserAccount}?id=${userAccountId}`,
+  });
+}
 </script>

--
Gitblit v1.9.1