applySuccess.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view>
  3. <view class="header">
  4. <u-icon name='checkmark' size="150" color="#ff6b35"></u-icon>
  5. <view class="success-text">售后申请提交成功</view>
  6. <view class="btn-view">
  7. <view class="btn-item">
  8. <u-button ripple class="btn1" shape="circle" @click="navigateToAfterSales()">查看记录</u-button>
  9. </view>
  10. <view class="btn-item">
  11. <u-button ripple class="btn2" shape="circle" @click="navigateToHome()">回到主页</u-button>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="text-view">
  16. <view style="display: flex; margin-bottom: 20rpx; align-items: center">温馨提示:</view>
  17. <view>• 商品寄回地址将在审核通过后在申请记录中查询。</view>
  18. <view>• 提交服务单后,售后专员可能与您电话沟通,请保持手机畅通。</view>
  19. <view>• 退货处理成功后退款金额将原路返回到您的支持账户中;</view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {};
  27. },
  28. methods: {
  29. /**
  30. * 跳转到售后服务
  31. */
  32. navigateToAfterSales() {
  33. uni.redirectTo({
  34. url: "/pages/order/afterSales/afterSales",
  35. });
  36. },
  37. /**
  38. * 跳转到首页
  39. */
  40. navigateToHome() {
  41. uni.switchTab({
  42. url: "/pages/tabbar/home/index",
  43. });
  44. },
  45. },
  46. };
  47. </script>
  48. <style lang="scss" scoped>
  49. page {
  50. background: $page-color-base;
  51. padding-bottom: 100rpx;
  52. }
  53. .btn1 {
  54. background: $light-color;
  55. color: #fff;
  56. }
  57. .btn2 {
  58. color: $light-color;
  59. }
  60. .header {
  61. background-color: #fff;
  62. height: 500rpx;
  63. display: flex;
  64. flex-direction: column;
  65. align-items: center;
  66. justify-content: center;
  67. .success-text {
  68. font-size: 40rpx;
  69. font-weight: 400;
  70. margin: 20rpx 0;
  71. }
  72. .btn-view {
  73. display: flex;
  74. flex-direction: row;
  75. margin: 40rpx 0rpx;
  76. .btn-item {
  77. margin: 0rpx 20rpx;
  78. }
  79. }
  80. }
  81. .text-view {
  82. margin: 40rpx;
  83. color: #909399;
  84. }
  85. </style>