From e0cb82c8dbf83fabc0cab548abc873926366fb75 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 21 五月 2025 17:29:15 +0800
Subject: [PATCH] fix: 修改ui

---
 apps/taro/src/subpackages/recharge/rechargeElectricResult/rechargeElectricResult.vue |   26 +++++++++++++++++++++-----
 1 files changed, 21 insertions(+), 5 deletions(-)

diff --git a/apps/taro/src/subpackages/recharge/rechargeElectricResult/rechargeElectricResult.vue b/apps/taro/src/subpackages/recharge/rechargeElectricResult/rechargeElectricResult.vue
index b073adc..02746bf 100644
--- a/apps/taro/src/subpackages/recharge/rechargeElectricResult/rechargeElectricResult.vue
+++ b/apps/taro/src/subpackages/recharge/rechargeElectricResult/rechargeElectricResult.vue
@@ -1,11 +1,17 @@
 <template>
   <PageLayout title="鍏呭�兼垚鍔�" class="rechargeElectricResult-page-wrapper" hasBorder>
     <ContentScrollView>
-      <RechargeResultView
-        style="margin-top: 40px"
+      <ResultWithTips
+        :title="title"
+        :orderNo="orderNo"
+        type="success"
+        dangerTips="鍚屼竴鍙风爜鍏呭�兼湡闂达紝鏈埌璐﹀墠鍒囧嬁鍦ㄥ叾浠栦换浣曞钩鍙板啀娆″厖鍊笺�傚洜姝ら�犳垚鐨勮祫閲戞崯澶遍』鐢ㄦ埛鑷鎵挎媴锛侊紒锛�"
         @go-back-home="goHome()"
-        title="鏀粯鎴愬姛锛屽厖鍊兼灏嗗湪0-72灏忔椂鍐呭埌璐�"
-      />
+      >
+        <template #remark>
+          <div class="result-content-remark-item">鍏呭�兼灏嗗湪0-72灏忔椂鍐呭埌璐�</div>
+        </template>
+      </ResultWithTips>
     </ContentScrollView>
   </PageLayout>
 </template>
@@ -13,9 +19,19 @@
 <script setup lang="ts">
 import { PageLayout } from '@/components';
 import { goHome } from '@/utils';
-import { RechargeResultView } from '@life-payment/components';
+import { ResultWithTips } from '@life-payment/components';
 
 defineOptions({
   name: 'rechargeElectricResult',
 });
+
+type Props = {
+  title?: string;
+  orderNo?: string;
+  dangerTips?: string;
+};
+
+const props = withDefaults(defineProps<Props>(), {
+  title: '鏀粯鎴愬姛',
+});
 </script>

--
Gitblit v1.9.1