myorder.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <template>
  2. <view class="page">
  3. <u-tabs :font-size='28' :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
  4. <view class="list">
  5. <view class="box">
  6. <view class="u-flex u-row-between">
  7. <text class="order">订单编号:</text>
  8. <view class="">
  9. <text class="state">
  10. 待支付
  11. </text>
  12. </view>
  13. </view>
  14. <view class="book">
  15. <view class="u-flex" style="margin-top: 26rpx;">
  16. <view class="" style="padding: 0 20rpx;">
  17. <image src="../../static/logo.png" style="width: 120rpx;height: 160rpx;" mode=""></image>
  18. </view>
  19. <view class="" style="margin-left: 20rpx;">
  20. <view class="name u-line-1">中医基础理论(全国中医药行业高等…</view>
  21. <view class="type">资源类型:付费资源</view>
  22. <view class="money">¥324.5</view>
  23. </view>
  24. </view>
  25. <view class="shapping u-flex " style="justify-content: end;">
  26. <text class="font1">商品金额:</text>
  27. <text class="font3">¥</text>
  28. <text class="font2">325.00</text>
  29. </view>
  30. <view class="u-flex " style="margin-top: 28rpx;justify-content: end;">
  31. <view class="cancel">取消订单</view>
  32. <view class="pay">立即支付</view>
  33. <view class=" cancel" @click="delect">删除订单</view>
  34. <view class="details cancel">查看详情</view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. list: [{
  46. name: '全部'
  47. }, {
  48. name: '待支付'
  49. }, {
  50. name: '已完成',
  51. }, {
  52. name: '已取消',
  53. }],
  54. current: 0
  55. };
  56. },
  57. methods: {
  58. change(index) {
  59. this.current = index;
  60. },
  61. delect() {
  62. }
  63. }
  64. }
  65. </script>
  66. <style lang="scss">
  67. .cancel {
  68. width: 148rpx;
  69. height: 68rpx;
  70. border-radius: 8rpx;
  71. border: 2rpx solid #979797;
  72. line-height: 68rpx;
  73. text-align: center;
  74. margin-left: 20rpx;
  75. }
  76. .pay {
  77. width: 160rpx;
  78. height: 68rpx;
  79. background: #06A971;
  80. border-radius: 8rpx;
  81. line-height: 68rpx;
  82. text-align: center;
  83. margin-left: 20rpx;
  84. }
  85. .name {
  86. font-size: 28rpx;
  87. font-family: PingFangHK, PingFangHK;
  88. font-weight: 400;
  89. color: #333333;
  90. }
  91. .font1 {
  92. font-size: 26rpx;
  93. font-family: PingFangSC, PingFang SC;
  94. font-weight: 400;
  95. color: #222222;
  96. }
  97. .font2 {
  98. font-size: 36rpx;
  99. font-family: JDZhengHT, JDZhengHT;
  100. font-weight: 500;
  101. color: #222222;
  102. }
  103. .font3 {
  104. font-size: 26rpx;
  105. font-family: JDZhengHT, JDZhengHT;
  106. font-weight: 300;
  107. color: #222222;
  108. margin-left: 14rpx;
  109. margin-top: 10rpx;
  110. }
  111. .type {
  112. font-size: 24rpx;
  113. font-family: PingFangSC, PingFang SC;
  114. font-weight: 400;
  115. color: #444444;
  116. margin-top: 8rpx;
  117. }
  118. .shapping {
  119. margin-top: 28rpx;
  120. }
  121. .money {
  122. font-size: 32rpx;
  123. font-family: SFPro, SFPro;
  124. font-weight: 400;
  125. color: #333333;
  126. margin-top: 42rpx;
  127. }
  128. ::v-deep .u-tab-bar {
  129. background-color: #06A971 !important;
  130. }
  131. .state {
  132. font-size: 24rpx;
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: 400;
  135. color: #CF1534;
  136. }
  137. ::v-deep .u-tab-item {
  138. color: #222 !important
  139. }
  140. .book {
  141. margin: 28rpx 0 0 0;
  142. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  143. }
  144. .order {
  145. font-size: 24rpx;
  146. font-family: SFPro, SFPro;
  147. font-weight: 400;
  148. color: #222222;
  149. }
  150. .box {
  151. width: 694rpx;
  152. height: 472rpx;
  153. background: #FFFFFF;
  154. border-radius: 16rpx;
  155. padding: 28rpx 20rpx 0;
  156. }
  157. .list {
  158. padding: 20rpx 28rpx;
  159. }
  160. .page {
  161. background: #F6F6F6;
  162. min-height: 100vh;
  163. }
  164. </style>