From 92544173d5fc7270427e1642b82b24314e68ecd9 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 06 六月 2025 21:41:48 +0800
Subject: [PATCH] fix: v1.4

---
 apps/taro/src/subpackages/my/applyAgent/applyAgent.vue |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/apps/taro/src/subpackages/my/applyAgent/applyAgent.vue b/apps/taro/src/subpackages/my/applyAgent/applyAgent.vue
index fa40cd0..61edcaa 100644
--- a/apps/taro/src/subpackages/my/applyAgent/applyAgent.vue
+++ b/apps/taro/src/subpackages/my/applyAgent/applyAgent.vue
@@ -1,16 +1,17 @@
 <template>
   <PageLayout title="绔嬪嵆鐢宠" class="applyAgent-page-wrapper" hasBgColor :needAuth="false">
     <ContentScrollView hasPaddingTop style="background-color: transparent">
-      <ApplyAgentView @submit="submit" 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 { goBack } from '@/utils';
 import type { ComponentExposed } from 'vue-component-type-helpers';
@@ -27,6 +28,8 @@
 }
 
 function submit() {
-  goBack();
+  RouteHelper.navigateTo({
+    url: RouterPath.applyResult,
+  });
 }
 </script>

--
Gitblit v1.9.1