<template>
|
<ContentScrollView :paddingH="false">
|
<OrderApplyRefundView :id="id" @submitApplyRefund="submitApplyRefund" />
|
</ContentScrollView>
|
</template>
|
|
<script setup lang="ts">
|
import Taro from '@tarojs/taro';
|
import { OrderApplyRefundView } from '@life-payment/components';
|
import { goBack } from '@/utils';
|
|
defineOptions({
|
name: 'InnerPage',
|
});
|
|
const router = Taro.useRouter();
|
const id = router.params?.id ?? '';
|
|
function submitApplyRefund() {
|
goBack();
|
}
|
</script>
|