wupengfei
2 天以前 0224735fb1cba46f6549adfa1f60ffd6b5041b72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <PageLayout title="充值成功" class="rechargeResult-page-wrapper" hasBorder>
    <ContentScrollView>
      <RechargeResultView style="margin-top: 40px" @go-back-home="goHome()" :orderNo="orderNo" />
    </ContentScrollView>
  </PageLayout>
</template>
 
<script setup lang="ts">
import { PageLayout } from '@/components';
import { goHome } from '@/utils';
import { RechargeResultView } from '@life-payment/components';
import Taro from '@tarojs/taro';
 
defineOptions({
  name: 'rechargeResult',
});
 
const router = Taro.useRouter();
const orderNo = router.params?.orderNo ?? '';
</script>