result.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!--
  2. * @Descripttion: 提交订单结果
  3. * @version: 1.0.0
  4. * @Author: dream
  5. * @Date: 2021-03-26 14:00:59
  6. * @LastEditors: dream
  7. * @LastEditTime: 2021-03-31 11:04:42
  8. -->
  9. <template>
  10. <view class="order-submit-res">
  11. <view class="main-area iph-bg-fff">
  12. <view class="res-icon iph-icon-res-success"></view>
  13. <view class="res-text u-m-t-40 u-font-36 u-line-50">支付成功</view>
  14. <view class="res-desc u-m-t-16">请耐心等候您的订单</view>
  15. </view>
  16. <button class="back-btn">返回</button>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. name: 'orderResult',
  22. data () {
  23. return {
  24. }
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. .order-submit-res {
  32. .main-area {
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. padding: 64px 32px;
  38. .res-text {
  39. color: $iph-prompt-text;
  40. }
  41. .res-desc {
  42. color: $iph-desc-text;
  43. }
  44. }
  45. .res-icon {
  46. width: 128px;
  47. height: 128px;
  48. }
  49. .back-btn {
  50. margin-top: 48px;
  51. padding: 22px 0;
  52. width: 686px;
  53. height: 88px;
  54. line-height: 44px;
  55. font-size: 32px;
  56. text-align: center;
  57. color: $iph-standby-text;
  58. background-color: $u-type-primary;
  59. }
  60. }
  61. </style>