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>