detailCard.vue 6.4 KB

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