success.vue 582 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="cmain">
  3. <view class="icon">&#xe602;</view>
  4. <view class="desc">购买成功。</view>
  5. <button class="btn" @click="go()">返回订单列表</button>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {};
  12. },
  13. methods: {
  14. go() {
  15. uni.redirectTo({
  16. url: '/pages/market/two/purchaser/order/list'
  17. });
  18. }
  19. }
  20. };
  21. </script>
  22. <style lang="scss">
  23. .cmain {
  24. text-align: center;
  25. padding: 40px;
  26. color: $font-c;
  27. .icon {
  28. font-size: 150px;
  29. color: $main-color;
  30. }
  31. .desc {
  32. margin-top: 7px;
  33. }
  34. .btn {
  35. margin-top: 50px;
  36. }
  37. }
  38. </style>