From 1910e9f27373b8b4da75f076762025ceb3419965 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 12 六月 2025 15:40:50 +0800
Subject: [PATCH] fix: 暂时隐藏电信充值通道
---
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