From 915424730f27445da2e8de13b62e77179cc1a15a Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 18 八月 2025 17:07:39 +0800
Subject: [PATCH] fix: 关闭移动充值渠道,打开电信充值渠道
---
apps/taro/src/subpackages/order/orderApplyRefund/InnerPage.vue | 19 +++++++++++++++++--
1 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/apps/taro/src/subpackages/order/orderApplyRefund/InnerPage.vue b/apps/taro/src/subpackages/order/orderApplyRefund/InnerPage.vue
index afc98aa..43b7221 100644
--- a/apps/taro/src/subpackages/order/orderApplyRefund/InnerPage.vue
+++ b/apps/taro/src/subpackages/order/orderApplyRefund/InnerPage.vue
@@ -1,13 +1,21 @@
<template>
- <ContentScrollView :paddingH="false">
- <OrderApplyRefundView :id="id" @submitApplyRefund="submitApplyRefund" />
+ <ContentScrollView hasPaddingTop style="background-color: transparent">
+ <OrderApplyRefundView
+ :id="id"
+ @submitApplyRefund="submitApplyRefund"
+ ref="orderApplyRefundViewRef"
+ />
</ContentScrollView>
+ <PageFooter>
+ <PageFooterBtn type="primary" @click="handleSubmit">鎻愪氦</PageFooterBtn>
+ </PageFooter>
</template>
<script setup lang="ts">
import Taro from '@tarojs/taro';
import { OrderApplyRefundView } from '@life-payment/components';
import { goBack } from '@/utils';
+import type { ComponentExposed } from 'vue-component-type-helpers';
defineOptions({
name: 'InnerPage',
@@ -16,6 +24,13 @@
const router = Taro.useRouter();
const id = router.params?.id ?? '';
+const orderApplyRefundViewRef =
+ useTemplateRef<ComponentExposed<typeof OrderApplyRefundView>>('orderApplyRefundViewRef');
+
+function handleSubmit() {
+ orderApplyRefundViewRef.value?.handleSubmit?.();
+}
+
function submitApplyRefund() {
goBack();
}
--
Gitblit v1.9.1