packageCard.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. {{ i18n.purchase }}
  7. </view>
  8. <view class="_label-2" v-else-if="itemInfo.mall_order_id == 0">
  9. {{ i18n.selfPost }}
  10. </view>
  11. <view class="order-num">
  12. <text>{{ i18n.OrderNumber }}:</text>
  13. <text style="font-size: 24rpx">{{ 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">{{ i18n.total }}</text>
  33. <view style="color: #f83224; font-weight: 600">
  34. <text style="font-size: 20rpx">¥</text>
  35. <text>{{ itemInfo.gap_price.split(".")[0] }}</text
  36. >.
  37. <text style="font-size: 20rpx">{{
  38. itemInfo.gap_price.split(".")[1]
  39. }}</text>
  40. </view>
  41. </view>
  42. <view class="card-bottom">
  43. <view class="package-weight">
  44. <text>{{ i18n.Parcelweight }}:</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 == 'imperfect' ||
  53. itemInfo.status == 'overseas_undelivered' ||
  54. itemInfo.status == 'unpaid' ||
  55. itemInfo.status == 'group_unpaid' ||
  56. itemInfo.status == 'domestic_received'
  57. "
  58. @click.stop="$emit('freeze', itemInfo)"
  59. >
  60. {{ itemInfo.is_frozen == 0 ? i18n.Frozen : i18n.recover }}
  61. </button>
  62. <button
  63. class="btn-2"
  64. v-show="
  65. itemInfo.status == 'domestic_delivered' ||
  66. itemInfo.status == 'overseas_undelivered' ||
  67. itemInfo.status == 'overseas_delivered' ||
  68. itemInfo.status == 'packaging'
  69. "
  70. @click.stop="$emit('toInformation', itemInfo)"
  71. >
  72. {{ i18n.details }}
  73. </button>
  74. <button
  75. class="btn-1"
  76. v-show="
  77. itemInfo.status == 'unpaid' || itemInfo.status == 'group_unpaid'
  78. "
  79. @click.stop="toPayment"
  80. >
  81. {{ i18n.payment }}
  82. </button>
  83. <!-- <button
  84. class="btn-1"
  85. @click.stop="toSending"
  86. v-show="
  87. itemInfo.type == 'mall_order' &&
  88. itemInfo.status == 'domestic_undelivered'
  89. "
  90. >
  91. {{ i18n.mail }}
  92. </button> -->
  93. </view>
  94. </view>
  95. </view>
  96. </template>
  97. <script>
  98. export default {
  99. props: {
  100. itemInfo: {
  101. typeof: Object,
  102. default: {},
  103. },
  104. language: {
  105. typeof: String,
  106. default: "",
  107. },
  108. },
  109. computed: {
  110. orderDetail() {
  111. if (this.itemInfo.orderStatus == 0) {
  112. return "待平台收货";
  113. } else if (this.itemInfo.orderStatus == 1) {
  114. return "待付款";
  115. } else if (this.itemInfo.orderStatus == 2) {
  116. return "待发货";
  117. } else if (this.itemInfo.orderStatus == 3) {
  118. return "拼包中";
  119. } else if (this.itemInfo.orderStatus == 4) {
  120. return "待寄件";
  121. }
  122. },
  123. i18n() {
  124. return this.$t("index");
  125. },
  126. },
  127. data() {
  128. return {};
  129. },
  130. methods: {
  131. toPayment() {
  132. let payMoney = "";
  133. // 根据不同的商城订单传不同的金额字段
  134. if (this.itemInfo.type == "mall_order") {
  135. payMoney = this.itemInfo.gap_price;
  136. } else {
  137. payMoney = this.itemInfo.pay_amount;
  138. }
  139. uni.navigateTo({
  140. url: `/pageD/paymentOrder/paymentOrder?money=${payMoney}&weight=${this.itemInfo.actual_weight}&packageType=${this.itemInfo.goods[0].type_text}&num=${this.itemInfo.goods[0].number}&orderid=${this.itemInfo.id}&type=${this.itemInfo.type}`,
  141. });
  142. },
  143. toSending() {
  144. uni.navigateTo({
  145. url: "/pageD/sending/sending?orderId=" + this.itemInfo.id,
  146. });
  147. },
  148. },
  149. };
  150. </script>
  151. <style lang="scss" scoped>
  152. .card {
  153. padding: 28rpx 20rpx 0;
  154. background-color: #fff;
  155. border-radius: 16rpx;
  156. margin-top: 20rpx;
  157. .top-detail {
  158. display: flex;
  159. align-items: center;
  160. justify-content: space-between;
  161. .top-left {
  162. display: flex;
  163. align-items: center;
  164. ._label-1 {
  165. padding: 4rpx 8rpx;
  166. background-color: #ff1515;
  167. border-radius: 4rpx;
  168. color: #fff;
  169. font-size: 20rpx;
  170. margin-right: 10rpx;
  171. }
  172. ._label-2 {
  173. padding: 4rpx 8rpx;
  174. background-color: #ff6700;
  175. border-radius: 4rpx;
  176. color: #fff;
  177. font-size: 20rpx;
  178. margin-right: 10rpx;
  179. }
  180. .order-num {
  181. font-size: 26rpx;
  182. color: #333333;
  183. }
  184. }
  185. .top-right {
  186. color: #f83224;
  187. font-size: 26rpx;
  188. }
  189. }
  190. .content-center {
  191. display: flex;
  192. justify-content: space-around;
  193. align-items: center;
  194. margin-top: 44rpx;
  195. margin-bottom: 40rpx;
  196. .arrow {
  197. width: 130rpx;
  198. height: 10rpx;
  199. }
  200. .center-left-right {
  201. display: flex;
  202. flex-direction: column;
  203. align-items: center;
  204. justify-content: center;
  205. .address {
  206. font-weight: 600;
  207. }
  208. .name {
  209. font-size: 24rpx;
  210. color: rgba(34, 34, 34, 0.7);
  211. margin-top: 10rpx;
  212. }
  213. }
  214. }
  215. .price {
  216. display: flex;
  217. justify-content: flex-end;
  218. align-items: center;
  219. margin-bottom: 28rpx;
  220. }
  221. .card-bottom {
  222. display: flex;
  223. justify-content: space-between;
  224. align-items: center;
  225. padding: 30rpx 0 28rpx;
  226. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  227. .package-weight {
  228. font-size: 26rpx;
  229. color: #444444;
  230. }
  231. .btn-list {
  232. display: flex;
  233. .btn-1 {
  234. font-size: 28rpx;
  235. color: #fff;
  236. // border: 2rpx solid #f83224;
  237. background-color: #f83224;
  238. margin: 0;
  239. border-radius: 34rpx;
  240. min-width: 132rpx;
  241. margin-left: 20rpx;
  242. height: 68rpx;
  243. line-height: 68rpx;
  244. }
  245. .btn-2 {
  246. font-size: 28rpx;
  247. color: #222;
  248. border: 2rpx solid rgba(151, 151, 151, 0.7);
  249. background-color: #fff;
  250. margin: 0;
  251. border-radius: 34rpx;
  252. padding: 0;
  253. min-width: 132rpx;
  254. margin-left: 20rpx;
  255. padding: 0 20rpx;
  256. height: 68rpx;
  257. line-height: 68rpx;
  258. }
  259. }
  260. }
  261. }
  262. </style>