多租户商城-商户小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
1.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <view class="payCourteous">
  3. <view class="evaBox">
  4. <view class="imgBox">
  5. <image src="http://36.138.125.206:8081/ceres-local-file/static/images/payIcon.png"></image>
  6. </view>
  7. <view class="successful">评价成功</view>
  8. <view class="btnBox fs28 font-color-333">
  9. <view class="orderBtn btn" @click="goToOrder">查看订单</view>
  10. <view class="homeBtn btn" @click="goToHome">返回首页</view>
  11. </view>
  12. </view>
  13. <HotTemplate />
  14. </view>
  15. </template>
  16. <script>
  17. import HotTemplate from '@/components/hoteRecommed/index.vue'
  18. const NET = require('@/utils/request')
  19. const API = require('@/config/api')
  20. export default {
  21. name: "evaSuccessful",
  22. components: {
  23. HotTemplate
  24. },
  25. data() {
  26. return {
  27. orderId: null,
  28. orderPolite: {},
  29. list: [],
  30. }
  31. },
  32. methods: {
  33. goToOrder() {
  34. uni.navigateTo({
  35. url: '../orderModule/index?type='
  36. })
  37. },
  38. goToHome() {
  39. uni.switchTab({
  40. url: '../../pages/tabbar/index/index'
  41. })
  42. },
  43. }
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. page {
  48. background: #F8F8F8;
  49. }
  50. .payCourteous {
  51. border-top: 2rpx solid #F3F4F5;
  52. .evaBox {
  53. padding: 30rpx 30rpx 50rpx 30rpx;
  54. background: #FFFFFF;
  55. .imgBox {
  56. padding-top: 100rpx;
  57. display: flex;
  58. justify-content: center;
  59. image {
  60. width: 166rpx;
  61. height: 121rpx;
  62. }
  63. }
  64. .successful {
  65. text-align: center;
  66. margin-top: 30rpx;
  67. }
  68. .btnBox {
  69. display: flex;
  70. justify-content: center;
  71. margin-top: 30rpx;
  72. .btn {
  73. width: 140rpx;
  74. height: 58rpx;
  75. line-height: 58rpx;
  76. border: 2rpx solid #999999;
  77. text-align: center;
  78. font-size: 24rpx;
  79. color: #999999;
  80. }
  81. .orderBtn {
  82. margin-right: 30rpx;
  83. }
  84. .homeBtn {
  85. background: #333333;
  86. border: none;
  87. color: #FFEBC4;
  88. }
  89. }
  90. }
  91. }
  92. </style>