zhengyiming
3 天以前 add9b3bb61fcc337b02c15e7973967d670e7d3be
apps/taro/src/subpackages/order/orderApplyRefund/InnerPage.vue
@@ -1,17 +1,22 @@
<template>
  <ContentScrollView :paddingH="false">
    <OrderApplyRefundView :orderNo="orderNo" />
    <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 orderNo = router.params?.orderNo ?? '';
const id = router.params?.id ?? '';
function submitApplyRefund() {
  goBack();
}
</script>