zhengyiming
2025-06-09 f5105689af0ccee7d34632e8f8b47a66abda0884
apps/taro/src/subpackages/my/applyAgent/applyAgent.vue
@@ -1,24 +1,34 @@
<template>
  <PageLayout title="立即申请" class="applyAgent-page-wrapper" hasBgColor :needAuth="false">
    <ContentScrollView hasPaddingTop style="background-color: transparent">
      <!-- <OrderApplyRefundView
      :id="id"
      @submitApplyRefund="submitApplyRefund"
      ref="orderApplyRefundViewRef"
    /> -->
      <ApplyAgentView @submit="submit" ref="applyAgentViewRef" />
    </ContentScrollView>
    <PageFooter>
      <PageFooterBtn type="primary" @click="handleSubmit">提交申请</PageFooterBtn>
      <PageFooterBtn type="primary" @click="handleSubmit">立即提交</PageFooterBtn>
    </PageFooter>
  </PageLayout>
</template>
<script setup lang="ts">
import { PageLayout } from '@/components';
import { RouterPath } from '@/constants';
import { ApplyAgentView } from '@life-payment/components';
import type { ComponentExposed } from 'vue-component-type-helpers';
defineOptions({
  name: 'applyAgent',
});
function handleSubmit() {}
const applyAgentViewRef =
  useTemplateRef<ComponentExposed<typeof ApplyAgentView>>('applyAgentViewRef');
function handleSubmit() {
  applyAgentViewRef.value?.handleSubmit?.();
}
function submit(value: string) {
  RouteHelper.navigateTo({
    url: `${RouterPath.applyResult}?promoterIdNumber=${value}`,
  });
}
</script>