| <template> | 
|   <PageLayout title="立即申请" class="applyAgent-page-wrapper" hasBgColor :needAuth="false"> | 
|     <ContentScrollView hasPaddingTop style="background-color: transparent"> | 
|       <!-- <OrderApplyRefundView | 
|       :id="id" | 
|       @submitApplyRefund="submitApplyRefund" | 
|       ref="orderApplyRefundViewRef" | 
|     /> --> | 
|     </ContentScrollView> | 
|     <PageFooter> | 
|       <PageFooterBtn type="primary" @click="handleSubmit">提交申请</PageFooterBtn> | 
|     </PageFooter> | 
|   </PageLayout> | 
| </template> | 
|   | 
| <script setup lang="ts"> | 
| import { PageLayout } from '@/components'; | 
| import { RouterPath } from '@/constants'; | 
|   | 
| defineOptions({ | 
|   name: 'applyAgent', | 
| }); | 
|   | 
| function handleSubmit() { | 
|   RouteHelper.navigateTo({ | 
|     url: RouterPath.applyResult, | 
|   }); | 
| } | 
| </script> |