refundResult.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="container">
  3. <view class="content">
  4. <view class="white-panel display-flex__ac display-flex__jc">
  5. <view class="panel-inner">
  6. <image class="panel-icon" src="../static/images/icon_success.png" mode="aspectFit"/>
  7. <view class="title-main text-color__dominant text-center font-bold">申请提交成功</view>
  8. <view class="title-sub text-color__secondary text-center">您可以在退款申请记录查询退款状态</view>
  9. </view>
  10. </view>
  11. <view class="btn-area">
  12. <view class="public_btn backgroundCustom" @click="toRecord">查看申请记录</view>
  13. <view class="public_btn border boderColorCustom colorCustom" @click="toHome">返回首页</view>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script setup lang="ts">
  19. import { common } from '@/utils';
  20. /**
  21. * 查看申请记录
  22. */
  23. const toRecord = () => {
  24. // 旧
  25. // common.goToUrl(`/pagesPatient/st1/business/refund/refundApplicationRecord/refundApplicationRecord`, { skipWay: "navigateTo", data: "" });
  26. // 新
  27. common.goToUrl(`/pagesPatient/st1/business/outpatient/outpatientRefundNew/refundRecord/refundRecord`, { skipWay: "reLaunch", data: "" });
  28. };
  29. /**
  30. * 返回首页
  31. */
  32. const toHome = () => {
  33. common.goToUrl(`/pages/st1/business/tabbar/homePage/homePage`, { skipWay: "reLaunch", data: "" });
  34. };
  35. </script>
  36. <style>
  37. @import "../static/css/refund.wxss";
  38. .white-panel {
  39. min-height: 300upx;
  40. padding: 100upx 0 180upx;
  41. }
  42. .panel-icon {
  43. width: 100%;
  44. height: 200upx;
  45. }
  46. .title-main {
  47. font-size: 36upx;
  48. margin-top: 30upx;
  49. }
  50. .title-sub {
  51. margin-top: 30upx;
  52. font-size: 30upx;
  53. line-height: 50upx;
  54. padding: 0 30upx;
  55. text-align: justify;
  56. }
  57. .btn-area {
  58. margin-top: 80upx;
  59. }
  60. .btn-area .public_btn + .public_btn {
  61. margin-top: 30upx;
  62. }
  63. </style>