| | |
| | | <template> |
| | | <Result |
| | | :title="title" |
| | | :refundCheckRemark="refundCheckRemark" |
| | | :orderNo="orderNo" |
| | | :icon="OssAssets.result.Success" |
| | | :customerServiceTips="CustomerServiceTips" |
| | |
| | | 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', |
| | |
| | | |
| | | type Props = { |
| | | title?: string; |
| | | refundCheckRemark?: string; |
| | | orderNo?: string; |
| | | dangerTips?: string; |
| | | lifePayOrderType?: LifeRechargeConstants.LifePayOrderTypeEnum; |
| | |
| | | |
| | | const props = withDefaults(defineProps<Props>(), { |
| | | title: '支付成功', |
| | | refundCheckRemark: '充值款将在0-24小时内到账', |
| | | dangerTips: |
| | | '同一号码充值期间,未到账前切勿在其他任何平台再次充值。因此造成的资金损失须用户自行承担!!!', |
| | | }); |