zhengyiming
2025-02-21 a3be4bd8a96df6b27e4f0d3883d661d9cb64d1fc
apps/taro/src/subpackages/recharge/phoneBillRecharge/InnerPage.vue
@@ -1,13 +1,20 @@
<template>
  <ContentScrollView :paddingH="false">
    <PhoneBillRecharge />
    <PhoneBillRecharge @goPay="goPay" />
  </ContentScrollView>
</template>
<script setup lang="ts">
import { PhoneBillRecharge } from '@life-payment/components';
import Taro from '@tarojs/taro';
defineOptions({
  name: 'InnerPage',
});
function goPay() {
  Taro.navigateTo({
    url: RouterPath.selectPayType,
  });
}
</script>