| | |
| | | import { PageLayout } from '@/components'; |
| | | import { RouterPath, OssAssets } from '@/constants'; |
| | | import { Image } from '@tarojs/components'; |
| | | import Taro from '@tarojs/taro'; |
| | | |
| | | defineOptions({ |
| | | name: 'AgentRecruitment', |
| | | }); |
| | | |
| | | const router = Taro.useRouter(); |
| | | |
| | | const promoterIdNumber = router.params?.promoterIdNumber ?? ''; |
| | | |
| | | function submit() { |
| | | RouteHelper.navigateTo({ |
| | | url: RouterPath.applyAgent, |
| | | url: promoterIdNumber |
| | | ? `${RouterPath.applyAgent}?promoterIdNumber=${promoterIdNumber}` |
| | | : RouterPath.applyAgent, |
| | | }); |
| | | } |
| | | </script> |