packageCard.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <view class="card" @click="$emit('toInformation', itemInfo)">
  3. <view class="top-detail">
  4. <view class="top-left">
  5. <view class="_label-1" v-if="itemInfo.mall_order_id > 0">
  6. 平台自购
  7. </view>
  8. <view class="_label-2" v-else-if="itemInfo.mall_order_id == 0">
  9. 自寄
  10. </view>
  11. <view class="order-num">
  12. <text>订单编号:</text>
  13. <text>{{ itemInfo.order_no }}</text>
  14. </view>
  15. </view>
  16. <view class="top-right">
  17. {{ itemInfo.status_text }}
  18. </view>
  19. </view>
  20. <view class="content-center">
  21. <view class="center-left-right">
  22. <view class="address"> {{ itemInfo.from_province_name || "" }} </view>
  23. <view class="name"> {{ itemInfo.from_name }} </view>
  24. </view>
  25. <image class="arrow" src="../../../static/mine/337.png" mode=""></image>
  26. <view class="center-left-right">
  27. <view class="address"> {{ itemInfo.to_province_name || "" }} </view>
  28. <view class="name"> {{ itemInfo.to_name }} </view>
  29. </view>
  30. </view>
  31. <view class="price" v-if="itemInfo.status == 'unpaid'">
  32. <text style="font-size: 24rpx; color: #333">合计</text>
  33. <view style="color: #f83224; font-weight: 600">
  34. <text style="font-size: 20rpx">¥</text>
  35. <text>{{ itemInfo.actual_price.split(".")[0] }}</text
  36. >.
  37. <text style="font-size: 20rpx">{{
  38. itemInfo.actual_price.split(".")[1]
  39. }}</text>
  40. </view>
  41. </view>
  42. <view class="card-bottom">
  43. <view class="package-weight">
  44. <text>包裹重量:</text>
  45. <text>{{ Number(itemInfo.actual_weight) }}kg</text>
  46. </view>
  47. <view class="btn-list">
  48. <button
  49. class="btn-2"
  50. v-show="
  51. itemInfo.status == 'domestic_delivered' ||
  52. itemInfo.status == 'domestic_received'
  53. "
  54. @click.stop="freeze"
  55. >
  56. {{ itemInfo.is_frozen == 0 ? "冻结" : "恢复" }}
  57. </button>
  58. <button
  59. class="btn-2"
  60. v-show="
  61. itemInfo.status == 'domestic_delivered' ||
  62. itemInfo.status == 'overseas_undelivered' ||
  63. itemInfo.status == 'overseas_delivered'
  64. "
  65. @click.stop="$emit('toInformation', itemInfo)"
  66. >
  67. 查看详情
  68. </button>
  69. <button
  70. class="btn-1"
  71. v-show="itemInfo.status == 'unpaid'"
  72. @click.stop="toPayment"
  73. >
  74. 立即付款
  75. </button>
  76. <button
  77. class="btn-1"
  78. @click.stop="toSending"
  79. v-show="itemInfo.status == 'domestic_undelivered'"
  80. >
  81. 去寄件
  82. </button>
  83. <button
  84. class="btn-2"
  85. @click.stop="toSending"
  86. v-show="itemInfo.status == 'domestic_delivered'"
  87. >
  88. 填写快递信息
  89. </button>
  90. </view>
  91. </view>
  92. </view>
  93. </template>
  94. <script>
  95. export default {
  96. props: {
  97. itemInfo: {
  98. typeof: Object,
  99. default: {},
  100. },
  101. },
  102. computed: {
  103. orderDetail() {
  104. if (this.itemInfo.orderStatus == 0) {
  105. return "待平台收货";
  106. } else if (this.itemInfo.orderStatus == 1) {
  107. return "待付款";
  108. } else if (this.itemInfo.orderStatus == 2) {
  109. return "待发货";
  110. } else if (this.itemInfo.orderStatus == 3) {
  111. return "拼包中";
  112. } else if (this.itemInfo.orderStatus == 4) {
  113. return "待寄件";
  114. }
  115. },
  116. },
  117. data() {
  118. return {};
  119. },
  120. methods: {
  121. //冻结
  122. freeze() {
  123. uni.$u.http
  124. .post(`/api/express-order/froze/${this.itemInfo.id}`)
  125. .then((res) => {
  126. uni.showToast({
  127. title: this.itemInfo.is_frozen == 0 ? "已冻结" : "已恢复",
  128. icon: "none",
  129. });
  130. });
  131. },
  132. toPayment() {
  133. uni.navigateTo({
  134. url: "/pageD/paymentOrder/paymentOrder",
  135. });
  136. },
  137. toSending() {
  138. uni.navigateTo({
  139. url: "/pageD/sending/sending",
  140. });
  141. },
  142. },
  143. };
  144. </script>
  145. <style lang="scss" scoped>
  146. .card {
  147. padding: 28rpx 20rpx 0;
  148. background-color: #fff;
  149. border-radius: 16rpx;
  150. margin-top: 20rpx;
  151. .top-detail {
  152. display: flex;
  153. align-items: center;
  154. justify-content: space-between;
  155. .top-left {
  156. display: flex;
  157. align-items: center;
  158. ._label-1 {
  159. padding: 4rpx 8rpx;
  160. background-color: #ff1515;
  161. border-radius: 4rpx;
  162. color: #fff;
  163. font-size: 20rpx;
  164. margin-right: 10rpx;
  165. }
  166. ._label-2 {
  167. padding: 4rpx 8rpx;
  168. background-color: #ff6700;
  169. border-radius: 4rpx;
  170. color: #fff;
  171. font-size: 20rpx;
  172. margin-right: 10rpx;
  173. }
  174. .order-num {
  175. font-size: 26rpx;
  176. color: #333333;
  177. }
  178. }
  179. .top-right {
  180. color: #f83224;
  181. font-size: 26rpx;
  182. }
  183. }
  184. .content-center {
  185. display: flex;
  186. justify-content: space-around;
  187. align-items: center;
  188. margin-top: 44rpx;
  189. margin-bottom: 40rpx;
  190. .arrow {
  191. width: 130rpx;
  192. height: 10rpx;
  193. }
  194. .center-left-right {
  195. display: flex;
  196. flex-direction: column;
  197. align-items: center;
  198. justify-content: center;
  199. .address {
  200. font-weight: 600;
  201. }
  202. .name {
  203. font-size: 24rpx;
  204. color: rgba(34, 34, 34, 0.7);
  205. margin-top: 10rpx;
  206. }
  207. }
  208. }
  209. .price {
  210. display: flex;
  211. justify-content: flex-end;
  212. align-items: center;
  213. margin-bottom: 28rpx;
  214. }
  215. .card-bottom {
  216. display: flex;
  217. justify-content: space-between;
  218. align-items: center;
  219. padding: 30rpx 0 28rpx;
  220. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  221. .package-weight {
  222. font-size: 26rpx;
  223. color: #444444;
  224. }
  225. .btn-list {
  226. display: flex;
  227. .btn-1 {
  228. font-size: 28rpx;
  229. color: #fff;
  230. // border: 2rpx solid #f83224;
  231. background-color: #f83224;
  232. margin: 0;
  233. border-radius: 34rpx;
  234. min-width: 132rpx;
  235. margin-left: 20rpx;
  236. height: 68rpx;
  237. line-height: 68rpx;
  238. }
  239. .btn-2 {
  240. font-size: 28rpx;
  241. color: #222;
  242. border: 2rpx solid rgba(151, 151, 151, 0.7);
  243. background-color: #fff;
  244. margin: 0;
  245. border-radius: 34rpx;
  246. padding: 0;
  247. min-width: 132rpx;
  248. margin-left: 20rpx;
  249. padding: 0 20rpx;
  250. height: 68rpx;
  251. line-height: 68rpx;
  252. }
  253. }
  254. }
  255. }
  256. </style>