myPackage.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. <template>
  2. <!-- 我的包裹 -->
  3. <view>
  4. <view class="top">
  5. <view class="inputbg u-flex">
  6. <u-icon name="search" color="#777777" size="32"></u-icon>
  7. <input type="text" :placeholder="i18n.orderSearch" style="flex: 1;margin-left: 12rpx;" v-model="keyword" />
  8. </view>
  9. <!-- rgba(252, 97, 74, 1) -->
  10. <view class="">
  11. <u-tabs :scrollable='false' :current='current' :list="list1" @click="click"></u-tabs>
  12. </view>
  13. </view>
  14. <view class="content">
  15. <view class="kg u-flex">
  16. <image src="static/images/kg.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  17. <text style="margin-left: 20rpx;">{{i18n.orderWeight}}{{sumweight}}kg</text>
  18. </view>
  19. <view class="">
  20. <view class="info" v-for="(item,idx) in goodslist" :key="idx" style="margin-bottom: 20rpx;">
  21. <view class="u-flex u-row-between">
  22. <view class="u-flex ">
  23. <!-- <view class="tab">{{i18n.purchase}}</view> -->
  24. <view class="tab" style="background: rgba(255, 103, 0, 1);">{{i18n.selfPost}}</view>
  25. <text class="order">{{i18n.OrderNumber}}:{{item.order_no}}</text>
  26. </view>
  27. <!-- <text class="order" style="color:rgba(248, 50, 36, 1) ;">{{i18n.receiveGoods}}</text> -->
  28. <text v-if="item.status=='imperfect'" class="order"
  29. style="color:rgba(248, 50, 36, 1) ;">待完善</text>
  30. <text v-if="item.status=='domestic_undelivered'" class="order"
  31. style="color:rgba(248, 50, 36, 1) ;">国内未发货</text>
  32. <text v-if="item.status=='domestic_delivered'" class="order"
  33. style="color:rgba(248, 50, 36, 1) ;">国内已发货</text>
  34. <text v-if="item.status=='domestic_received'" class="order"
  35. style="color:rgba(248, 50, 36, 1) ;">国内已收货</text>
  36. <text v-if="item.status=='unpaid'" class="order" style="color:rgba(248, 50, 36, 1) ;">待付款</text>
  37. <text v-if="item.status=='overseas_undelivered'" class="order"
  38. style="color:rgba(248, 50, 36, 1) ;">国际未发货</text>
  39. <text v-if="item.status=='overseas_delivered'" class="order"
  40. style="color:rgba(248, 50, 36, 1) ;">国际已发货</text>
  41. <text v-if="item.status=='overseas_received'" class="order"
  42. style="color:rgba(248, 50, 36, 1) ;">国际已收货</text>
  43. <text v-if="item.status=='finished'" class="order"
  44. style="color:rgba(248, 50, 36, 1) ;">已完成</text>
  45. <text v-if="item.status=='closed'" class="order" style="color:rgba(248, 50, 36, 1) ;">已关闭</text>
  46. <text v-if="item.status=='refunding'" class="order"
  47. style="color:rgba(248, 50, 36, 1) ;">退款中</text>
  48. <text v-if="item.status=='refunded'" class="order"
  49. style="color:rgba(248, 50, 36, 1) ;">已退款</text>
  50. </view>
  51. <view class="u-flex u-row-around" style="margin-top: 40rpx;">
  52. <view class="flexc">
  53. <view class="entrepotname">{{item.from_full_address}}</view>
  54. <view class="adda">{{item.from_name}}</view>
  55. </view>
  56. <image src="/pageB/static/images/arrows.png" style="width: 130rpx;height: 10rpx;" mode="">
  57. </image>
  58. <view class="flexc">
  59. <view class="entrepotname">{{item.to_full_address}}</view>
  60. <view class="adda">{{item.to_name}}</view>
  61. </view>
  62. </view>
  63. <view class="" style="margin-top: 36rpx;text-align: right;">
  64. <text class="sum">{{i18n.total}}</text>
  65. <text class="money" style="">¥</text>
  66. <text class="money" style="font-size: 36rpx;">{{item.estimated_price}}</text>
  67. <!-- <text class="money">.00</text> -->
  68. </view>
  69. <view class="content-bottom u-flex u-row-between">
  70. <text class="weight">{{i18n.Parcelweight}}:{{item.estimated_weight}}kg</text>
  71. <view class="u-flex">
  72. <!-- 冻结 -->
  73. <view class="btn" v-if="item.is_frozen==1" @click="frozen(item.id)">{{i18n.Frozen}}</view>
  74. <view class="btn">{{i18n.recover}}</view>
  75. <!-- 查看详情 -->
  76. <view class="btn" @click="detail(item.id)">{{i18n.details}}</view>
  77. <view class="btn"
  78. style="background-color:rgba(248, 50, 36, 1) ;color: #fff;border: 2rpx solid rgba(248, 50, 36, 0);">
  79. {{i18n.payment}}
  80. </view>
  81. <view class="btn"
  82. style="background-color:rgba(248, 50, 36, 1) ;color: #fff;border: 2rpx solid rgba(248, 50, 36, 0);">
  83. {{i18n.mail}}
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </template>
  92. <script>
  93. export default {
  94. data() {
  95. return {
  96. current: 0, //tab切换
  97. list1: [],
  98. status: '', //状态
  99. goodslist: [],
  100. sumweight: 0,
  101. to_transit: 0, //发往中转点
  102. transit_receipt: 0, //中转已签收
  103. to_overseas: 0 ,//正发往海外
  104. keyword:'',//关键词搜索
  105. };
  106. },
  107. onLoad(options) {
  108. console.log(options);
  109. this.current = options.index
  110. if (this.current == 0) {
  111. this.status = 'to_transit'
  112. } else if (this.current == 1) {
  113. this.status = 'transit_receipt'
  114. } else {
  115. this.status = 'to_overseas'
  116. }
  117. },
  118. computed: {
  119. i18n() {
  120. return this.$t('index')
  121. }
  122. },
  123. onShow() {
  124. this.getnumber()
  125. uni.setNavigationBarTitle({
  126. title: this.i18n.mine + this.i18n.parcel
  127. })
  128. this.getlist()
  129. },
  130. methods: {
  131. detail(id) {
  132. },
  133. //冻结
  134. frozen(id) {
  135. uni.$u.http
  136. .post(`/api/address/default/${id}`)
  137. .then((res) => {
  138. console.log(res);
  139. })
  140. .catch(() => {});
  141. },
  142. //获取列表
  143. getlist() {
  144. uni.$u.http.get('/api/express-order?', {
  145. params: {
  146. order_no:this.keyword,
  147. container_id: '',
  148. status_collection: this.status
  149. }
  150. }).then((res) => {
  151. this.goodslist = res.data
  152. this.goodslist.forEach((item) => {
  153. this.sumweight += Number(item.estimated_weight)
  154. })
  155. }).catch(() => {
  156. })
  157. },
  158. //获取列表数量
  159. getnumber() {
  160. uni.$u.http.get('/api/express-order/status-count', {
  161. }).then((res) => {
  162. this.to_transit = res.to_transit //发往中转点
  163. this.transit_receipt = res.transit_receipt //发往中转点
  164. this.to_overseas = res.to_overseas //发往中转点
  165. this.list1 = [{
  166. name: this.i18n.deliver + this.to_transit,
  167. }, {
  168. name: this.i18n.Sign + this.transit_receipt,
  169. }, {
  170. name: this.i18n.overseas + this.to_overseas
  171. }]
  172. }).catch(() => {
  173. })
  174. },
  175. click(item) {
  176. console.log('item', item);
  177. this.current = item.index
  178. if (this.current == 0) {
  179. this.status = 'to_transit'
  180. this.getlist()
  181. } else if (this.current == 1) {
  182. this.status = 'transit_receipt'
  183. this.getlist()
  184. } else {
  185. this.status = 'to_overseas'
  186. this.getlist()
  187. }
  188. }
  189. },
  190. mounted() {
  191. }
  192. }
  193. </script>
  194. <style lang="scss" scoped>
  195. .flexc {
  196. display: flex;
  197. flex-direction: column;
  198. justify-content: center;
  199. align-items: center;
  200. }
  201. .content {
  202. padding: 20rpx 24rpx;
  203. box-sizing: border-box;
  204. .content-bottom {
  205. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  206. margin-top: 30rpx;
  207. padding-top: 30rpx;
  208. .weight {
  209. font-family: PingFangSC, PingFang SC;
  210. font-weight: 400;
  211. font-size: 26rpx;
  212. color: #444444;
  213. line-height: 36rpx;
  214. text-align: left;
  215. font-style: normal;
  216. }
  217. .btn {
  218. // width: 132rpx;
  219. height: 68rpx;
  220. border-radius: 34rpx;
  221. border: 1rpx solid rgba(151, 151, 151, 0.7);
  222. display: inline;
  223. padding: 0 20rpx;
  224. box-sizing: border-box;
  225. font-family: PingFangSC, PingFang SC;
  226. font-weight: 400;
  227. font-size: 28rpx;
  228. color: #333333;
  229. line-height: 68rpx;
  230. text-align: center;
  231. font-style: normal;
  232. margin-left: 20rpx;
  233. }
  234. }
  235. .sum {
  236. font-family: PingFangSC, PingFang SC;
  237. font-weight: 400;
  238. font-size: 24rpx;
  239. color: #333333;
  240. line-height: 34rpx;
  241. text-align: left;
  242. font-style: normal;
  243. margin-right: 8rpx;
  244. }
  245. .money {
  246. font-family: JDZhengHT, JDZhengHT;
  247. font-weight: 400;
  248. // font-size: 26rpx;
  249. color: #F83224;
  250. line-height: 32rpx;
  251. text-align: left;
  252. font-style: normal;
  253. }
  254. .adda {
  255. margin-top: 8rpx;
  256. font-family: PingFangSC, PingFang SC;
  257. font-weight: 400;
  258. font-size: 24rpx;
  259. color: #222222;
  260. line-height: 34rpx;
  261. text-align: right;
  262. font-style: normal;
  263. }
  264. .entrepotname {
  265. font-family: PingFangSC, PingFang SC;
  266. font-weight: 500;
  267. font-size: 32rpx;
  268. color: #222222;
  269. line-height: 44rpx;
  270. text-align: left;
  271. font-style: normal;
  272. text-align: center;
  273. width: 300rpx;
  274. }
  275. .tab {
  276. // width: 96rpx;
  277. height: 36rpx;
  278. background: #FF1515;
  279. border-radius: 4rpx;
  280. font-family: PingFangSC, PingFang SC;
  281. font-weight: 400;
  282. font-size: 20rpx;
  283. color: #FFFFFF;
  284. line-height: 36rpx;
  285. text-align: center;
  286. font-style: normal;
  287. margin-right: 8rpx;
  288. padding: 0 8rpx;
  289. }
  290. .order {
  291. font-family: SFPro, SFPro;
  292. font-weight: 400;
  293. font-size: 26rpx;
  294. color: #333333;
  295. line-height: 30rpx;
  296. text-align: left;
  297. font-style: normal;
  298. }
  299. .info {
  300. width: 702rpx;
  301. // height: 366rpx;
  302. background: #FFFFFF;
  303. border-radius: 16rpx;
  304. padding: 28rpx 20rpx;
  305. box-sizing: border-box;
  306. margin-top: 20rpx;
  307. }
  308. .kg {
  309. width: 702rpx;
  310. // height: 68rpx;
  311. background: #FBE8E6;
  312. border-radius: 10rpx;
  313. padding: 18rpx 26rpx;
  314. box-sizing: border-box;
  315. font-family: PingFangSC, PingFang SC;
  316. font-weight: 400;
  317. font-size: 24rpx;
  318. color: #F83224;
  319. line-height: 34rpx;
  320. text-align: left;
  321. font-style: normal;
  322. }
  323. }
  324. .top {
  325. padding: 20rpx 24rpx;
  326. box-sizing: border-box;
  327. background-color: #fff;
  328. .inputbg {
  329. width: 694rpx;
  330. height: 72rpx;
  331. background: #F4F4F4;
  332. border-radius: 38rpx;
  333. padding: 0 38rpx;
  334. box-sizing: border-box;
  335. }
  336. }
  337. </style>