kj-flow.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view>
  3. <view class="u-flex u-row-between">
  4. <view class="" style="width: 28px;height: 28px;"></view>
  5. <view class="title">跨境物流</view>
  6. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  7. </view>
  8. <view class="u-flex" style="margin-top: 56rpx;">
  9. <scroll-view scroll-y="true" class="left">
  10. <view v-for="(item,idx) in transportList" :key="idx" @click="changea(item,idx)"
  11. style="height: 134rpx;display: flex;flex-direction: column;align-items: center;justify-content: center;"
  12. :style="{background:idx==leftchange? '':'#F7F7F7'}">
  13. <view class="ititle" :style="{fontWeight:idx==leftchange?'600':''}">{{item.name}}</view>
  14. <view class="itime" v-if="idx==leftchange&&containerList.length>0">预计到货时间 </view>
  15. <view class="itime" v-if="idx==leftchange&&containerList.length>0">{{estimated_arrived_date}}</view>
  16. </view>
  17. </scroll-view>
  18. <scroll-view scroll-y="true" class="right" style="margin-left: 36rpx;">
  19. <view v-for="(item,idx) in containerList" :key="idx" @click="change(item,idx)"
  20. style="height: 134rpx;display: flex;flex-direction: column;align-items: center;justify-content: center;"
  21. class="iitem">
  22. <view class="ititle u-flex u-row-between" style="width: 100%;">
  23. <view class="ititle">发柜时间 {{item.begin_date}}</view>
  24. <view style="font-size: 24rpx;
  25. color: #666666;">{{item.name}}</view>
  26. </view>
  27. <view class="u-flex u-row-between" style="margin-top: 16rpx;width: 100%;">
  28. <view class="price">
  29. <text style='font-size="24rpx"'>¥</text>
  30. <text style='font-size="32rpx"'>{{item.unit_price}}</text>
  31. <!-- <text style='font-size="32rpx"' v-else>{{item.special_delivery_fee}}</text> -->
  32. <text style='font-size="28rpx"'>/kg</text>
  33. </view>
  34. <u-icon v-if="idx==rightchange" name="checkbox-mark" color="rgba(248, 50, 36, 1)"
  35. size="28"></u-icon>
  36. <view v-else class="" style="width: 28px;height: 28px;"></view>
  37. </view>
  38. </view>
  39. </scroll-view>
  40. </view>
  41. <view class="bottom">
  42. <view class="btn" @click="enter">{{i18n.enter}}</view>
  43. </view>
  44. <view class=""></view>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. props: {
  50. province_id: {
  51. typeof: Number
  52. },
  53. goodstype: {
  54. typeof: ''
  55. }
  56. },
  57. name: "kj-flow",
  58. data() {
  59. return {
  60. leftchange: 0,
  61. rightchange: 0,
  62. containerList: [],
  63. transportList: [],
  64. estimated_arrived_date: '',
  65. leftname: '',
  66. rightname: '',
  67. dateid: ''
  68. };
  69. },
  70. computed: {
  71. i18n() {
  72. return this.$t('index')
  73. }
  74. },
  75. methods: {
  76. //货柜列表
  77. container(id) {
  78. uni.$u.http.get('/api/container-base', {
  79. params: {
  80. is_page: 0,
  81. province_id: this.province_id,
  82. transport_type_id: id
  83. }
  84. }).then((res) => {
  85. this.containerList = res
  86. this.estimated_arrived_date = res[0].estimated_arrived_date
  87. this.dateid = res[0].id
  88. this.rightname = res[0].name
  89. }).catch(() => {
  90. })
  91. },
  92. transport() {
  93. uni.$u.http.get('/api/transport-type').then((res) => {
  94. this.transportList = res
  95. this.container(res[0].id)
  96. }).catch(() => {
  97. })
  98. },
  99. //左边切换
  100. changea(item, index) {
  101. this.leftchange = index
  102. this.container(item.id)
  103. this.leftname = item.name
  104. console.log(this.leftchange);
  105. },
  106. //右边切换
  107. change(item, idx) {
  108. this.rightchange = idx
  109. this.dateid = item.id
  110. this.rightname = item.name
  111. },
  112. close() {
  113. this.$emit('close')
  114. },
  115. enter() {
  116. if (this.dateid == '') {
  117. this.$u.toast('请选择货柜')
  118. } else {
  119. this.$emit('success', {
  120. dateid: this.dateid,
  121. rightname: this.rightname,
  122. leftname: this.leftname
  123. })
  124. }
  125. }
  126. }
  127. }
  128. </script>
  129. <style lang="scss" scoped>
  130. .iitem {
  131. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  132. box-sizing: border-box;
  133. }
  134. .price {
  135. font-family: SFPro, SFPro;
  136. font-weight: 500;
  137. font-size: 24rpx;
  138. color: #F83224;
  139. line-height: 28rpx;
  140. text-align: right;
  141. font-style: normal;
  142. }
  143. .right {
  144. flex: 1;
  145. width: 474rpx;
  146. height: 642rpx;
  147. }
  148. .bottom {
  149. width: 750rpx;
  150. height: 166rpx;
  151. background: #FFFFFF;
  152. padding: 20rpx 24rpx;
  153. box-sizing: border-box;
  154. }
  155. .btn {
  156. width: 702rpx;
  157. height: 84rpx;
  158. background: #F83224;
  159. border-radius: 44rpx;
  160. font-family: PingFangSC, PingFang SC;
  161. font-weight: 500;
  162. font-size: 32rpx;
  163. color: #FFFFFF;
  164. line-height: 84rpx;
  165. text-align: center;
  166. font-style: normal;
  167. }
  168. .title {
  169. font-family: PingFangSC, PingFang SC;
  170. font-weight: 500;
  171. font-size: 36rpx;
  172. color: #333333;
  173. line-height: 50rpx;
  174. text-align: left;
  175. font-style: normal;
  176. }
  177. .left {
  178. width: 212rpx;
  179. height: 642rpx;
  180. }
  181. .ititle {
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 500;
  184. font-size: 28rpx;
  185. color: #222222;
  186. line-height: 40rpx;
  187. text-align: right;
  188. font-style: normal;
  189. }
  190. .itime {
  191. font-family: PingFangSC, PingFang SC;
  192. font-weight: 400;
  193. font-size: 20rpx;
  194. color: #333333;
  195. line-height: 28rpx;
  196. text-align: right;
  197. font-style: normal;
  198. }
  199. </style>