zhengyiming
17 小时以前 23bfd958545ab5548d561ef6db1eafafe03e4e05
packages/components/src/views/RechargeResultView/RechargeResultView.vue
@@ -1,7 +1,6 @@
<template>
  <Result
    :title="title"
    :refundCheckRemark="refundCheckRemark"
    :orderNo="orderNo"
    :icon="OssAssets.result.Success"
    :customerServiceTips="CustomerServiceTips"
@@ -24,6 +23,7 @@
import { LifeRechargeConstants } from '@life-payment/core-vue';
import { CustomerServiceTips, OssAssets } from '../../constants';
import Result from '../../components/Result/Result.vue';
import { Button as NutButton } from '@nutui/nutui-taro';
defineOptions({
  name: 'RechargeResultView',
@@ -31,7 +31,6 @@
type Props = {
  title?: string;
  refundCheckRemark?: string;
  orderNo?: string;
  dangerTips?: string;
  lifePayOrderType?: LifeRechargeConstants.LifePayOrderTypeEnum;
@@ -39,7 +38,6 @@
const props = withDefaults(defineProps<Props>(), {
  title: '支付成功',
  refundCheckRemark: '充值款将在0-24小时内到账',
  dangerTips:
    '同一号码充值期间,未到账前切勿在其他任何平台再次充值。因此造成的资金损失须用户自行承担!!!',
});