detailCard.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <template>
  2. <view class="card" @click="$emit('toInformation',itemInfo)">
  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" @click.stop="toGoods">发货</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. methods:{
  96. toGoods(){
  97. uni.navigateTo({
  98. url:"/pageD/deliverGoods/deliverGoods"
  99. })
  100. }
  101. },
  102. }
  103. </script>
  104. <style scoped lang="scss">
  105. .card {
  106. background-color: #fff;
  107. border-radius: 16rpx;
  108. padding: 0 20rpx;
  109. padding-bottom: 20rpx;
  110. margin-bottom: 20rpx;
  111. .user-name {
  112. display: flex;
  113. justify-content: space-between;
  114. align-items: center;
  115. height: 84rpx;
  116. border-bottom: 2rpx solid rgba(151, 151, 151, .2);
  117. .name {
  118. display: flex;
  119. align-items: center;
  120. font-size: 24rpx;
  121. color: #333;
  122. .header-img {
  123. width: 40rpx;
  124. height: 40rpx;
  125. border-radius: 50%;
  126. margin-right: 12rpx
  127. }
  128. }
  129. .order-status {
  130. font-size: 24rpx;
  131. color: #f83224;
  132. }
  133. }
  134. .order-detail {
  135. margin-top: 22rpx;
  136. position: relative;
  137. .detail {
  138. display: flex;
  139. .order-img {
  140. width: 180rpx;
  141. height: 180rpx;
  142. border-radius: 10rpx;
  143. margin-right: 20rpx;
  144. }
  145. .detail-right {
  146. width: 70%;
  147. .title-price {
  148. display: flex;
  149. font-size: 28rpx;
  150. justify-content: space-between;
  151. align-items: center;
  152. .title {
  153. width: 330rpx;
  154. overflow: hidden;
  155. white-space: nowrap;
  156. text-overflow: ellipsis;
  157. }
  158. }
  159. .specifications {
  160. display: flex;
  161. justify-content: space-between;
  162. align-items: center;
  163. font-size: 28rpx;
  164. color: #777;
  165. margin-top: 10rpx;
  166. .title {
  167. width: 330rpx;
  168. overflow: hidden;
  169. white-space: nowrap;
  170. text-overflow: ellipsis;
  171. }
  172. }
  173. }
  174. }
  175. }
  176. .price-detail {
  177. display: flex;
  178. justify-content: flex-end;
  179. align-items: flex-end;
  180. margin-top: 20rpx;
  181. .price {
  182. font-weight: 600;
  183. }
  184. }
  185. .remarks {
  186. display: flex;
  187. font-size: 28rpx;
  188. background-color: #f4f4f4;
  189. border-radius: 10rpx;
  190. padding: 14rpx 20rpx;
  191. margin-top: 20rpx;
  192. }
  193. .btn-list {
  194. display: flex;
  195. justify-content: flex-end;
  196. margin-top: 30rpx;
  197. .btn-1 {
  198. font-size: 28rpx;
  199. color: #f83224;
  200. border: 2rpx solid #f83224;
  201. background-color: #fff;
  202. margin: 0;
  203. border-radius: 34rpx;
  204. min-width: 162rpx;
  205. margin-left: 20rpx;
  206. }
  207. .btn-2 {
  208. font-size: 28rpx;
  209. color: #222;
  210. border: 2rpx solid #979797;
  211. background-color: #fff;
  212. margin: 0;
  213. border-radius: 34rpx;
  214. min-width: 162rpx;
  215. }
  216. }
  217. }
  218. </style>