1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <template>
| <ContentScrollView>
| <OrderRefundResultView
| style="margin-top: 40px"
| @go-back-home="goHome()"
| :orderNo="orderNo"
| ></OrderRefundResultView>
| </ContentScrollView>
| </template>
|
| <script setup lang="ts">
| import { OrderRefundResultView } from '@life-payment/components';
| import { goHome } from '@/utils';
| import Taro from '@tarojs/taro';
|
| defineOptions({
| name: 'InnerPage',
| });
|
| const router = Taro.useRouter();
| const orderNo = router.params?.orderNo ?? '';
| </script>
|
|