| | |
| | | <template> |
| | | <ContentScrollView> |
| | | <SelectPayTypeView style="margin-top: 40px" @paySuccess="handePaySuccess" /> |
| | | <SelectPayTypeView |
| | | style="margin-top: 40px" |
| | | :orderNo="orderNo" |
| | | :lifePayOrderType="lifePayOrderType" |
| | | @paySuccess="handePaySuccess" |
| | | /> |
| | | </ContentScrollView> |
| | | </template> |
| | | |
| | |
| | | name: 'selectPayType', |
| | | }); |
| | | |
| | | const router = Taro.useRouter(); |
| | | const orderNo = router.params?.orderNo ?? ''; |
| | | const lifePayOrderType = Number(router.params?.lifePayOrderType ?? ''); |
| | | |
| | | function handePaySuccess( |
| | | orderNo: string, |
| | | lifePayOrderType: LifeRechargeConstants.LifePayOrderTypeEnum |