detailCard.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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.sku_item.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
  67. class="btn-1"
  68. v-if="itemInfo.simplify_status == 'unfill'"
  69. @click.stop="toBond"
  70. >
  71. 缴纳保证金
  72. </button>
  73. <button class="btn-2" v-if="itemInfo.simplify_status == 'merdelivered'">
  74. 备注
  75. </button>
  76. <button
  77. class="btn-1"
  78. v-if="itemInfo.simplify_status == 'merdelivered'"
  79. @click.stop="toGoods"
  80. >
  81. 发货
  82. </button>
  83. <button class="btn-2" v-if="itemInfo.simplify_status == ' delivered'">
  84. 查看物流
  85. </button>
  86. </view>
  87. </view>
  88. </template>
  89. <script>
  90. export default {
  91. props: {
  92. itemInfo: {
  93. typeof: Object,
  94. default: {},
  95. },
  96. },
  97. computed: {
  98. model() {
  99. if (this.itemInfo.simplify_status == "unreview") {
  100. return "filter: blur(5px);";
  101. } else {
  102. return "";
  103. }
  104. },
  105. //根据状态 返回不同的字段
  106. deliveryStatus() {
  107. if (this.itemInfo.simplify_status == "unreview") {
  108. return "待审核";
  109. } else if (this.itemInfo.simplify_status == "unfill") {
  110. return "待缴纳保证金";
  111. } else if (this.itemInfo.simplify_status == "merdelivered") {
  112. return "待团长发货";
  113. } else if (this.itemInfo.simplify_status == "undelivered") {
  114. return "待总部发货";
  115. } else if (this.itemInfo.simplify_status == "delivered") {
  116. return "已发货";
  117. } else if (this.itemInfo.simplify_status == "domestic_delivered") {
  118. return "团长已发货";
  119. }
  120. },
  121. },
  122. data() {
  123. return {};
  124. },
  125. methods: {
  126. toBond() {
  127. //所有需要缴纳保证金的金额相加
  128. let goodsMoney = 0;
  129. this.itemInfo.order_goods.map((item) => {
  130. goodsMoney += Number(item.earnest_money);
  131. });
  132. //跳转支付
  133. uni.navigateTo({
  134. url: `/pageA/payorder?num=${goodsMoney}&orderid=${this.itemInfo.id}&orderType=bond`,
  135. });
  136. },
  137. toGoods() {
  138. uni.navigateTo({
  139. url: `/pageD/deliverGoods/deliverGoods?id=${this.itemInfo.id}`,
  140. });
  141. },
  142. },
  143. };
  144. </script>
  145. <style scoped lang="scss">
  146. .card {
  147. background-color: #fff;
  148. border-radius: 16rpx;
  149. padding: 0 20rpx;
  150. padding-bottom: 20rpx;
  151. margin-bottom: 20rpx;
  152. .user-name {
  153. display: flex;
  154. justify-content: space-between;
  155. align-items: center;
  156. height: 84rpx;
  157. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  158. .name {
  159. display: flex;
  160. align-items: center;
  161. font-size: 24rpx;
  162. color: #333;
  163. .header-img {
  164. width: 40rpx;
  165. height: 40rpx;
  166. border-radius: 50%;
  167. margin-right: 12rpx;
  168. }
  169. }
  170. .order-status {
  171. font-size: 24rpx;
  172. color: #f83224;
  173. }
  174. }
  175. .order-detail {
  176. margin-top: 22rpx;
  177. position: relative;
  178. .detail {
  179. display: flex;
  180. .order-img {
  181. width: 180rpx;
  182. height: 180rpx;
  183. border-radius: 10rpx;
  184. margin-right: 20rpx;
  185. }
  186. .detail-right {
  187. width: 70%;
  188. .title-price {
  189. display: flex;
  190. font-size: 28rpx;
  191. justify-content: space-between;
  192. align-items: center;
  193. .title {
  194. width: 330rpx;
  195. overflow: hidden;
  196. white-space: nowrap;
  197. text-overflow: ellipsis;
  198. }
  199. }
  200. .specifications {
  201. display: flex;
  202. justify-content: space-between;
  203. align-items: center;
  204. font-size: 28rpx;
  205. color: #777;
  206. margin-top: 10rpx;
  207. .title {
  208. width: 330rpx;
  209. overflow: hidden;
  210. white-space: nowrap;
  211. text-overflow: ellipsis;
  212. }
  213. }
  214. }
  215. }
  216. }
  217. .price-detail {
  218. display: flex;
  219. justify-content: flex-end;
  220. align-items: flex-end;
  221. margin-top: 20rpx;
  222. .price {
  223. font-weight: 600;
  224. }
  225. }
  226. .remarks {
  227. display: flex;
  228. font-size: 28rpx;
  229. background-color: #f4f4f4;
  230. border-radius: 10rpx;
  231. padding: 14rpx 20rpx;
  232. margin-top: 20rpx;
  233. }
  234. .btn-list {
  235. display: flex;
  236. justify-content: flex-end;
  237. margin-top: 30rpx;
  238. .btn-1 {
  239. font-size: 28rpx;
  240. color: #f83224;
  241. border: 2rpx solid #f83224;
  242. background-color: #fff;
  243. margin: 0;
  244. border-radius: 34rpx;
  245. min-width: 162rpx;
  246. margin-left: 20rpx;
  247. }
  248. .btn-2 {
  249. font-size: 28rpx;
  250. color: #222;
  251. border: 2rpx solid #979797;
  252. background-color: #fff;
  253. margin: 0;
  254. border-radius: 34rpx;
  255. min-width: 162rpx;
  256. }
  257. }
  258. }
  259. </style>