wupengfei
2025-06-04 7e111a1c07a50b611edb0dfbdf187f33e97d9bb7
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
<template>
  <PageLayout title="代理招募" class="applyAgent-page-wrapper" hasBgColor :needAuth="false">
    <ContentScrollView hasPaddingTop style="background-color: transparent">
      <div>AgentRecruitment</div>
    </ContentScrollView>
    <PageFooter>
      <PageFooterBtn type="primary" @click="submit">立即申请</PageFooterBtn>
    </PageFooter>
  </PageLayout>
</template>
 
<script setup lang="ts">
import { PageLayout } from '@/components';
import { RouterPath } from '@/constants';
 
defineOptions({
  name: 'AgentRecruitment',
});
 
function submit() {
  RouteHelper.navigateTo({
    url: RouterPath.applyAgent,
  });
}
</script>