| | |
| | | import Taro from '@tarojs/taro'; |
| | | import { OrderInputType } from '@life-payment/constants'; |
| | | import { RechargeGrid } from '@life-payment/components'; |
| | | import CustomTabBar from '../../custom-tab-bar/index'; |
| | | |
| | | const userStore = useUserStore(); |
| | | |
| | | const router = Taro.useRouter(); |
| | | |
| | | const goPhoneBillRecharge = useAccessLogin(() => { |
| | | Taro.navigateTo({ |
| | | RouteHelper.navigateTo({ |
| | | url: `${RouterPath.phoneBillRecharge}`, |
| | | }); |
| | | }); |
| | | const goElectricityBillRecharge = useAccessLogin(() => { |
| | | Taro.navigateTo({ |
| | | RouteHelper.navigateTo({ |
| | | url: `${RouterPath.electricBillRecharge}`, |
| | | }); |
| | | }); |
| | | const goGasBillRecharge = useAccessLogin(() => { |
| | | Taro.navigateTo({ |
| | | url: `${RouterPath.electricBillRecharge}`, |
| | | RouteHelper.navigateTo({ |
| | | url: `${RouterPath.gasBillRecharge}`, |
| | | }); |
| | | }); |
| | | </script> |