detailCard.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <template>
  2. <view class="card">
  3. <view class="user-name">
  4. <view class="name">
  5. <image class="header-img"
  6. src="https://ts3.cn.mm.bing.net/th?id=OIP-C.uMf5AX3a6yYpIhpEkyDxiQAAAA&w=250&h=250&c=8&rs=1&qlt=90&o=6&dpr=2&pid=3.1&rm=2"
  7. mode=""></image>
  8. <text>Trinity 自由比格</text>
  9. </view>
  10. <text class="order-status">{{deliveryStatus}}</text>
  11. </view>
  12. <view class="order-detail" :style="model">
  13. <view class="detail">
  14. <image class="order-img"
  15. src="https://img12.360buyimg.com/jdcms/s460x460_jfs/t1/226637/16/19995/180517/66696f86Fa90c7d49/3bc094e1eb7aeb12.jpg.avif"
  16. mode=""></image>
  17. <view class="detail-right">
  18. <view class="title-price">
  19. <view class="title">
  20. OATLY噢麦力 咖啡大师…
  21. </view>
  22. <view class="price">
  23. <text style="font-size: 20rpx;">¥</text>
  24. <text>133</text>.
  25. <text style="font-size: 20rpx;">22</text>
  26. </view>
  27. </view>
  28. <view class="specifications">
  29. <view class="title">
  30. 咖啡大师燕麦奶250ml*6瓶
  31. </view>
  32. <text>x1</text>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="price-detail">
  37. <text style="color: #222;font-size: 24rpx;">{{"共1件商品"+"&nbsp;"}}</text>
  38. <text style="font-size: 28rpx;">买家实付</text>
  39. <view class="price">
  40. <text style="font-size: 20rpx;">¥</text>
  41. <text>133</text>.
  42. <text style="font-size: 20rpx;">22</text>
  43. </view>
  44. </view>
  45. <view class="model" v-if="itemInfo.status == 0">
  46. </view>
  47. </view>
  48. <view class="remarks" v-if="itemInfo.status == 2">
  49. <view style="margin-right: 30rpx; color: #222;">
  50. 商家备注
  51. </view>
  52. <view style="color: rgba(34, 34,34, .6);">
  53. 买家急用,仓库尽早发货
  54. </view>
  55. </view>
  56. <view class="btn-list" v-if="itemInfo.status !==0&&itemInfo.status !=3 ">
  57. <button class="btn-1" v-if="itemInfo.status == 1">缴纳保证金</button>
  58. <button class="btn-2" v-if="itemInfo.status == 2">备注</button>
  59. <button class="btn-1" v-if="itemInfo.status == 2">发货</button>
  60. <button class="btn-2" v-if="itemInfo.status == 4">查看物流</button>
  61. </view>
  62. </view>
  63. </template>
  64. <script>
  65. export default {
  66. props: {
  67. itemInfo: {
  68. typeof: Object,
  69. default: {}
  70. }
  71. },
  72. computed: {
  73. model() {
  74. if (this.itemInfo.status == 0) {
  75. return 'filter: blur(5px);'
  76. }
  77. },
  78. deliveryStatus() {
  79. if (this.itemInfo.status == 0) {
  80. return '待审核'
  81. } else if (this.itemInfo.status == 1) {
  82. return '待缴纳保证金'
  83. }else if (this.itemInfo.status == 2) {
  84. return '待团长发货'
  85. }else if (this.itemInfo.status == 3) {
  86. return '待总部发货'
  87. }else if (this.itemInfo.status == 4) {
  88. return '已发货'
  89. }
  90. }
  91. },
  92. data() {
  93. return {}
  94. }
  95. }
  96. </script>
  97. <style scoped lang="scss">
  98. .card {
  99. background-color: #fff;
  100. border-radius: 16rpx;
  101. padding: 0 20rpx;
  102. padding-bottom: 20rpx;
  103. margin-bottom: 20rpx;
  104. .user-name {
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. height: 84rpx;
  109. border-bottom: 2rpx solid rgba(151, 151, 151, .2);
  110. .name {
  111. display: flex;
  112. align-items: center;
  113. font-size: 24rpx;
  114. color: #333;
  115. .header-img {
  116. width: 40rpx;
  117. height: 40rpx;
  118. border-radius: 50%;
  119. margin-right: 12rpx
  120. }
  121. }
  122. .order-status {
  123. font-size: 24rpx;
  124. color: #f83224;
  125. }
  126. }
  127. .order-detail {
  128. margin-top: 22rpx;
  129. position: relative;
  130. .detail {
  131. display: flex;
  132. .order-img {
  133. width: 180rpx;
  134. height: 180rpx;
  135. border-radius: 10rpx;
  136. margin-right: 20rpx;
  137. }
  138. .detail-right {
  139. width: 70%;
  140. .title-price {
  141. display: flex;
  142. font-size: 28rpx;
  143. justify-content: space-between;
  144. align-items: center;
  145. .title {
  146. width: 330rpx;
  147. overflow: hidden;
  148. white-space: nowrap;
  149. text-overflow: ellipsis;
  150. }
  151. }
  152. .specifications {
  153. display: flex;
  154. justify-content: space-between;
  155. align-items: center;
  156. font-size: 28rpx;
  157. color: #777;
  158. margin-top: 10rpx;
  159. .title {
  160. width: 330rpx;
  161. overflow: hidden;
  162. white-space: nowrap;
  163. text-overflow: ellipsis;
  164. }
  165. }
  166. }
  167. }
  168. }
  169. .price-detail {
  170. display: flex;
  171. justify-content: flex-end;
  172. align-items: flex-end;
  173. margin-top: 20rpx;
  174. .price {
  175. font-weight: 600;
  176. }
  177. }
  178. .remarks {
  179. display: flex;
  180. font-size: 28rpx;
  181. background-color: #f4f4f4;
  182. border-radius: 10rpx;
  183. padding: 14rpx 20rpx;
  184. margin-top: 20rpx;
  185. }
  186. .btn-list {
  187. display: flex;
  188. justify-content: flex-end;
  189. margin-top: 30rpx;
  190. .btn-1 {
  191. font-size: 28rpx;
  192. color: #f83224;
  193. border: 2rpx solid #f83224;
  194. background-color: #fff;
  195. margin: 0;
  196. border-radius: 34rpx;
  197. min-width: 162rpx;
  198. margin-left: 20rpx;
  199. }
  200. .btn-2 {
  201. font-size: 28rpx;
  202. color: #222;
  203. border: 2rpx solid #979797;
  204. background-color: #fff;
  205. margin: 0;
  206. border-radius: 34rpx;
  207. min-width: 162rpx;
  208. }
  209. }
  210. }
  211. </style>