<template>
|
<PageLayout title="立即申请" class="applyAgent-page-wrapper" hasBgColor :needAuth="false">
|
<ResultWithoutBG
|
remark="我们的运营人员会在5个工作日内联系您沟通代理事宜,请保持电话畅通!"
|
tips="注:成功招募代理商,还有最高1000元奖励,详询请咨询:18968263725"
|
title="提交成功"
|
@generate="generate"
|
></ResultWithoutBG>
|
</PageLayout>
|
</template>
|
|
<script setup lang="ts">
|
import { PageLayout } from '@/components';
|
import { ResultWithoutBG } from '@life-payment/components';
|
import Taro from '@tarojs/taro';
|
|
defineOptions({
|
name: 'applyAgent',
|
});
|
|
const router = Taro.useRouter();
|
|
const promoterIdNumber = router.params?.promoterIdNumber ?? '';
|
|
function generate() {
|
RouteHelper.navigateTo({
|
url: `${RouterPath.generatePromotionCode}?promoterIdNumber=${promoterIdNumber}`,
|
});
|
}
|
</script>
|