detailCard.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <template>
  2. <view class="card" @click="$emit('toInformation', itemInfo)">
  3. <view class="user-name">
  4. <view class="name">
  5. <image class="header-img" :src="itemInfo.member.avatar" mode=""></image>
  6. <text>{{ itemInfo.nickname }}</text>
  7. </view>
  8. <text class="order-status">{{ deliveryStatus }}</text>
  9. </view>
  10. <view
  11. class="order-detail"
  12. :style="model"
  13. v-for="item in itemInfo.order_goods"
  14. >
  15. <view class="detail">
  16. <image class="order-img" :src="item.goods_image" mode=""></image>
  17. <view class="detail-right">
  18. <view class="title-price">
  19. <view class="title"> {{ item.goods_name }}</view>
  20. <view class="price">
  21. <text style="font-size: 20rpx">¥</text>
  22. <text>{{ item.price.split(".")[0] }}</text
  23. >.
  24. <text style="font-size: 20rpx">{{
  25. item.price.split(".")[1]
  26. }}</text>
  27. </view>
  28. </view>
  29. <view class="specifications">
  30. <view class="title"> {{ item.sku_item.item }} </view>
  31. <text>x{{ item.goods_num }}</text>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="price-detail">
  36. <view style="color: #222; font-size: 24rpx">
  37. <text>共{{ itemInfo.order_goods.length }}</text>
  38. <text>
  39. {{ "件商品" + "&nbsp;" }}
  40. </text>
  41. </view>
  42. <text style="font-size: 28rpx">买家实付</text>
  43. <view class="price">
  44. <text style="font-size: 20rpx">¥</text>
  45. <text>{{ itemInfo.amount.split(".")[0] }}</text
  46. >.
  47. <text style="font-size: 20rpx">{{
  48. itemInfo.amount.split(".")[1]
  49. }}</text>
  50. </view>
  51. </view>
  52. <view class="model" v-if="itemInfo.simplify_status == 'unreview'"> </view>
  53. </view>
  54. <view class="remarks" v-if="itemInfo.simplify_status == 'merdelivered'">
  55. <view style="margin-right: 30rpx; color: #222"> 商家备注 </view>
  56. <view style="color: rgba(34, 34, 34, 0.6)"> {{ itemInfo.remark }} </view>
  57. </view>
  58. <view
  59. class="btn-list"
  60. v-if="
  61. itemInfo.simplify_status !== 'unreview' &&
  62. itemInfo.status != 'undelivered'
  63. "
  64. >
  65. <button class="btn-1" v-if="itemInfo.simplify_status == 'unfill'">
  66. 缴纳保证金
  67. </button>
  68. <button class="btn-2" v-if="itemInfo.simplify_status == 'merdelivered'">
  69. 备注
  70. </button>
  71. <button
  72. class="btn-1"
  73. v-if="itemInfo.simplify_status == 'merdelivered'"
  74. @click.stop="toGoods"
  75. >
  76. 发货
  77. </button>
  78. <button class="btn-2" v-if="itemInfo.simplify_status == ' delivered'">
  79. 查看物流
  80. </button>
  81. </view>
  82. </view>
  83. </template>
  84. <script>
  85. export default {
  86. props: {
  87. itemInfo: {
  88. typeof: Object,
  89. default: {},
  90. },
  91. },
  92. computed: {
  93. model() {
  94. if (this.itemInfo.simplify_status == "unreview") {
  95. return "filter: blur(5px);";
  96. } else {
  97. return "";
  98. }
  99. },
  100. //根据状态 返回不同的字段
  101. deliveryStatus() {
  102. if (this.itemInfo.simplify_status == "unreview") {
  103. return "待审核";
  104. } else if (this.itemInfo.simplify_status == "unfill") {
  105. return "待缴纳保证金";
  106. } else if (this.itemInfo.simplify_status == "merdelivered") {
  107. return "待团长发货";
  108. } else if (this.itemInfo.simplify_status == "undelivered") {
  109. return "待总部发货";
  110. } else if (this.itemInfo.simplify_status == "delivered") {
  111. return "已发货";
  112. } else if (this.itemInfo.simplify_status == "domestic_delivered") {
  113. return "团长已发货";
  114. }
  115. },
  116. },
  117. data() {
  118. return {};
  119. },
  120. methods: {
  121. toGoods() {
  122. uni.navigateTo({
  123. url: `/pageD/deliverGoods/deliverGoods?id=${this.itemInfo.id}`,
  124. });
  125. },
  126. },
  127. };
  128. </script>
  129. <style scoped lang="scss">
  130. .card {
  131. background-color: #fff;
  132. border-radius: 16rpx;
  133. padding: 0 20rpx;
  134. padding-bottom: 20rpx;
  135. margin-bottom: 20rpx;
  136. .user-name {
  137. display: flex;
  138. justify-content: space-between;
  139. align-items: center;
  140. height: 84rpx;
  141. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  142. .name {
  143. display: flex;
  144. align-items: center;
  145. font-size: 24rpx;
  146. color: #333;
  147. .header-img {
  148. width: 40rpx;
  149. height: 40rpx;
  150. border-radius: 50%;
  151. margin-right: 12rpx;
  152. }
  153. }
  154. .order-status {
  155. font-size: 24rpx;
  156. color: #f83224;
  157. }
  158. }
  159. .order-detail {
  160. margin-top: 22rpx;
  161. position: relative;
  162. .detail {
  163. display: flex;
  164. .order-img {
  165. width: 180rpx;
  166. height: 180rpx;
  167. border-radius: 10rpx;
  168. margin-right: 20rpx;
  169. }
  170. .detail-right {
  171. width: 70%;
  172. .title-price {
  173. display: flex;
  174. font-size: 28rpx;
  175. justify-content: space-between;
  176. align-items: center;
  177. .title {
  178. width: 330rpx;
  179. overflow: hidden;
  180. white-space: nowrap;
  181. text-overflow: ellipsis;
  182. }
  183. }
  184. .specifications {
  185. display: flex;
  186. justify-content: space-between;
  187. align-items: center;
  188. font-size: 28rpx;
  189. color: #777;
  190. margin-top: 10rpx;
  191. .title {
  192. width: 330rpx;
  193. overflow: hidden;
  194. white-space: nowrap;
  195. text-overflow: ellipsis;
  196. }
  197. }
  198. }
  199. }
  200. }
  201. .price-detail {
  202. display: flex;
  203. justify-content: flex-end;
  204. align-items: flex-end;
  205. margin-top: 20rpx;
  206. .price {
  207. font-weight: 600;
  208. }
  209. }
  210. .remarks {
  211. display: flex;
  212. font-size: 28rpx;
  213. background-color: #f4f4f4;
  214. border-radius: 10rpx;
  215. padding: 14rpx 20rpx;
  216. margin-top: 20rpx;
  217. }
  218. .btn-list {
  219. display: flex;
  220. justify-content: flex-end;
  221. margin-top: 30rpx;
  222. .btn-1 {
  223. font-size: 28rpx;
  224. color: #f83224;
  225. border: 2rpx solid #f83224;
  226. background-color: #fff;
  227. margin: 0;
  228. border-radius: 34rpx;
  229. min-width: 162rpx;
  230. margin-left: 20rpx;
  231. }
  232. .btn-2 {
  233. font-size: 28rpx;
  234. color: #222;
  235. border: 2rpx solid #979797;
  236. background-color: #fff;
  237. margin: 0;
  238. border-radius: 34rpx;
  239. min-width: 162rpx;
  240. }
  241. }
  242. }
  243. </style>