| | |
| | | <template> |
| | | <LoadingLayout :loading="isLoading"> |
| | | <div class="recharge-result-view" v-bind="$attrs"> |
| | | <Result |
| | | v-bind="$attrs" |
| | | :title="title" |
| | | :orderNo="orderNo" |
| | | :icon="OssAssets.result.Fail" |
| | | :refundCheckRemark="detail.refundCheckRemark" |
| | | :servicePhone="CustomerServicePhone" |
| | | > |
| | | <template #actions> |
| | | <div class="chunk-form-actions"> |
| | | <nut-button class="recharge-button" type="primary" @click="emit('goBackHome')"> |
| | | <div class="recharge-button-inner"> |
| | | <div class="recharge-button-text">回首页</div> |
| | | </div> |
| | | </nut-button> |
| | | </div> |
| | | </template> |
| | | </Result> |
| | | <!-- <div class="recharge-result-view" > |
| | | <div class="recharge-result-view-title">{{ title }}</div> |
| | | <div class="recharge-result-view-subtitle">订单号:{{ orderNo }}</div> |
| | | <div class="recharge-result-view-remark"> |
| | |
| | | <div class="recharge-result-view-btn-wrapper"> |
| | | <div class="recharge-result-view-btn" @click="emit('goBackHome')">回首页</div> |
| | | </div> |
| | | </div> |
| | | </div> --> |
| | | </LoadingLayout> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { LifeRechargeConstants, useLifeRechargeContext } from '@life-payment/core-vue'; |
| | | import { CustomerServicePhone } from '../../constants'; |
| | | import Result from '../../components/Result/Result.vue'; |
| | | import { CustomerServicePhone, OssAssets } from '../../constants'; |
| | | import { useQuery } from '@tanstack/vue-query'; |
| | | import { computed } from 'vue'; |
| | | import LoadingLayout from '../../components//Layout/LoadingLayout.vue'; |