zhengyiming
2025-06-09 3d2cde3ff8a0b5ed36fb232291e07a390d668709
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<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: 'applyResult',
});
 
const router = Taro.useRouter();
 
const consultationId = router.params?.consultationId ?? '';
 
function generate() {
  RouteHelper.navigateTo({
    url: `${RouterPath.promotionQrcode}?promoterIdNumber=${consultationId}`,
  });
}
</script>