orderInofrmation.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view class="detail" @click="$emit('toDetail')">
  3. <view class="title">
  4. <view class="title-left">
  5. <image class="header-img"
  6. src="https://tse4-mm.cn.bing.net/th/id/OIP-C.uMf5AX3a6yYpIhpEkyDxiQAAAA?rs=1&pid=ImgDetMain"
  7. mode=""></image>
  8. <text>张三</text>
  9. <image class="right-325" src="../../../static/mine/325.png" mode=""></image>
  10. </view>
  11. <text class="order-status">待付款</text>
  12. </view>
  13. <view class="commodity-information">
  14. <view class="commodity-1">
  15. <image class="commodity-img"
  16. src="https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/156939/24/43697/126104/6619de23F69802006/8432635baed61875.jpg.webp"
  17. mode=""></image>
  18. <view class="">
  19. <view class="commodity-2">
  20. <view class="commodity-title">
  21. OATLY 噢麦力 醇香燕麦…
  22. </view>
  23. <view class="commodity-price">
  24. <text style="font-size: 20rpx;">¥</text>
  25. <text>133</text>.
  26. <text style="font-size: 20rpx;">22</text>
  27. </view>
  28. </view>
  29. <view class="commodity-3">
  30. <view class="specifications">
  31. 【醇香】250ml*3
  32. </view>
  33. <view style="font-size: 24rpx;">
  34. x1
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="price">
  41. <text>需付款</text>
  42. <text style="font-size: 20rpx;">¥</text>
  43. <text>133</text>.
  44. <text style="font-size: 20rpx;">22</text>
  45. </view>
  46. <view class="btn-list">
  47. <button class="status-1">取消订单</button><button class="status-2">继续付款</button>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. import textRight from '../../accountSecurity/component/textRight.vue'
  53. export default {
  54. components: {
  55. textRight
  56. },
  57. data() {
  58. return {
  59. }
  60. },
  61. }
  62. </script>
  63. <style scoped lang="scss">
  64. .detail {
  65. padding: 28rpx 20rpx;
  66. background-color: #fff;
  67. border-radius: 16rpx;
  68. margin-top: 28rpx;
  69. .title {
  70. display: flex;
  71. justify-content: space-between;
  72. .title-left {
  73. display: flex;
  74. font-size: 32rpx;
  75. align-items: center;
  76. .header-img {
  77. width: 36rpx;
  78. height: 36rpx;
  79. border-radius: 50%;
  80. margin-right: 20rpx;
  81. }
  82. .right-325 {
  83. width: 32rpx;
  84. height: 32rpx;
  85. }
  86. }
  87. .order-status {
  88. color: #f83224;
  89. font-size: 26rpx;
  90. }
  91. }
  92. .commodity-information {
  93. margin-top: 28rpx;
  94. .commodity-1 {
  95. display: flex;
  96. .commodity-img {
  97. width: 180rpx;
  98. height: 180rpx;
  99. margin-right: 20rpx;
  100. border-radius: 10rpx;
  101. }
  102. .commodity-2 {
  103. display: flex;
  104. justify-content: space-between;
  105. .commodity-title {
  106. width: 328rpx;
  107. overflow: hidden;
  108. white-space: nowrap;
  109. text-overflow: ellipsis;
  110. margin-right: 38rpx;
  111. }
  112. }
  113. .commodity-3{
  114. display: flex;
  115. justify-content: space-between;
  116. margin-top: 20rpx;
  117. color: #777;
  118. .specifications{
  119. font-size: 28rpx;
  120. color: #777;
  121. }
  122. }
  123. }
  124. }
  125. .price{
  126. display: flex;
  127. justify-content: flex-end;
  128. font-size: 28rpx;
  129. align-items: flex-end;
  130. }
  131. .btn-list{
  132. display: flex;
  133. justify-content: flex-end;
  134. margin-top: 34rpx;
  135. .status-1{
  136. background-color: #fff;
  137. border-radius: 34rpx;
  138. margin: 0;
  139. padding: 0;
  140. font-size: 28rpx;
  141. color: #222;
  142. width: 168rpx;
  143. height: 68rpx;
  144. line-height: 68rpx;
  145. margin-right: 20rpx;
  146. border: 2rpx solid #979797;
  147. }
  148. .status-2{
  149. background-color: #ffffff;
  150. border-radius: 34rpx;
  151. margin: 0;
  152. padding: 0;
  153. font-size: 28rpx;
  154. color: #f83224;
  155. width: 168rpx;
  156. height: 68rpx;
  157. line-height: 68rpx;
  158. border: 2rpx solid #f83224;
  159. }
  160. }
  161. }
  162. </style>