zhengyiming
2025-02-24 58c6417603cc9e4c1012ba4fc4c6306dcb0e2324
packages/components/src/views/RechargeResultView/RechargeResultView.vue
@@ -1,6 +1,6 @@
<template>
  <div class="recharge-result-view">
    <div class="recharge-result-view-title">支付成功,充值款将在0-24小时内到账</div>
    <div class="recharge-result-view-title">{{ title }}</div>
    <div class="recharge-result-view-tips">
      同一号码充值期间,未到账前切勿在其他任何平台再次充值。因此造成的资金损失须用户自行承担!!!
    </div>
@@ -14,13 +14,21 @@
</template>
<script setup lang="ts">
import { LifeRechargeConstants } from '../../utils';
defineOptions({
  name: 'RechargeResultView',
});
// type Props = {};
type Props = {
  title?: string;
  orderNo?: string;
  lifePayOrderType?: LifeRechargeConstants.LifePayOrderTypeEnum;
};
// const props = withDefaults(defineProps<Props>(), {});
const props = withDefaults(defineProps<Props>(), {
  title: '支付成功,充值款将在0-24小时内到账',
});
const emit = defineEmits<{
  (e: 'goBackHome'): void;