kj-flow.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  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">{{i18n.flow}}</view>
  6. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  7. </view>
  8. <view v-if="transportList.length>0" 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" v-if="language =='zh-CN'" :style="{fontWeight:idx==leftchange?'600':''}">
  14. {{item.name_cn}}
  15. </view>
  16. <view class="ititle" v-if="language =='en-US'" :style="{fontWeight:idx==leftchange?'600':''}">
  17. {{item.name_en}}
  18. </view>
  19. <view class="ititle" v-if="language =='es-ES'" :style="{fontWeight:idx==leftchange?'600':''}">
  20. {{item.name_es}}
  21. </view>
  22. <view class="ititle" v-if="language =='it-IT'" :style="{fontWeight:idx==leftchange?'600':''}">
  23. {{item.name_ita}}
  24. </view>
  25. <view class="itime" v-if="idx==leftchange&&containerList.length>0">{{i18n.Estimatedtimeofarrival}}
  26. </view>
  27. <view class="itime" v-if="idx==leftchange&&containerList.length>0">{{estimated_arrived_date}}</view>
  28. </view>
  29. </scroll-view>
  30. <scroll-view scroll-y="true" class="right" style="margin-left: 36rpx;">
  31. <view v-for="(item,idx) in containerList" :key="idx" @click="change(item,idx)"
  32. style="display: flex;flex-direction: column;align-items: center;justify-content: center;padding: 20rpx 0 16rpx;"
  33. class="iitem">
  34. <view class="ititle u-flex u-row-between" style="width: 100%;">
  35. <view class="ititle">{{i18n.Shipmentdate}}: {{item.estimated_departed_date}}</view>
  36. <view v-if="language =='zh-CN'" style="font-size: 24rpx;
  37. color: #666666;">{{item.name_cn}}</view>
  38. <view v-if="language =='en-US'" style="font-size: 24rpx;
  39. color: #666666;">{{item.name_en}}</view>
  40. <view v-if="language =='es-ES'" style="font-size: 24rpx;
  41. color: #666666;">{{item.name_es}}</view>
  42. <view v-if="language =='it-IT'" style="font-size: 24rpx;
  43. color: #666666;">{{item.name_ita}}</view>
  44. </view>
  45. <view class="u-flex u-row-between" style="margin-top: 16rpx;width: 100%;">
  46. <view class="price">
  47. <text style='font-size="24rpx"'>¥</text>
  48. <text style='font-size="32rpx"'>{{item.unit_price}}</text>
  49. <!-- <text style='font-size="32rpx"' v-else>{{item.special_delivery_fee}}</text> -->
  50. <text style='font-size="28rpx"'>/kg</text>
  51. </view>
  52. <u-icon v-if="idx==rightchange" name="checkbox-mark" color="rgba(248, 50, 36, 1)"
  53. size="28"></u-icon>
  54. <view v-else class="" style="width: 28px;height: 28px;"></view>
  55. </view>
  56. </view>
  57. </scroll-view>
  58. </view>
  59. <view class="" v-else style="height: 300rpx;text-align: center;line-height: 300rpx;font-size: 24rpx;">
  60. {{i18n.nodata}}
  61. </view>
  62. <view class="bottom">
  63. <view class="btn" @click="enter">{{i18n.enter}}</view>
  64. </view>
  65. <!-- <view class=""></view> -->
  66. </view>
  67. </template>
  68. <script>
  69. export default {
  70. props: {
  71. weight: {
  72. typeof: Number
  73. },
  74. length: {
  75. typeof: Number
  76. },
  77. width: {
  78. typeof: Number
  79. },
  80. height: {
  81. typeof: Number
  82. },
  83. province_id: {
  84. typeof: Number
  85. },
  86. country_id: {
  87. typeof: Number
  88. },
  89. goodstype: {
  90. typeof: String,
  91. default: "normal"
  92. },
  93. leftchangea: {
  94. type: String,
  95. default: ''
  96. },
  97. rightchangea: {
  98. type: String,
  99. default: ''
  100. },
  101. typeida: {
  102. type: String,
  103. default: ''
  104. },
  105. language: {
  106. type: String,
  107. default: 'zh-CN'
  108. }
  109. },
  110. name: "kj-flow",
  111. data() {
  112. return {
  113. leftchange: 0,
  114. rightchange: 0,
  115. containerList: [],
  116. transportList: [],
  117. estimated_arrived_date: '',
  118. leftname: '',
  119. rightname: '',
  120. dateid: '',
  121. unit_price: '',
  122. // language: 'zh-CN',
  123. typeid: '',
  124. };
  125. },
  126. created() {
  127. // this.transport()
  128. },
  129. mounted() {
  130. // if (uni.getStorageSync('language') != '') {
  131. // this.language = uni.getStorageSync('language')
  132. // console.log('222222',this.language);
  133. // }
  134. },
  135. computed: {
  136. i18n() {
  137. return this.$t('index')
  138. },
  139. },
  140. methods: {
  141. //货柜列表
  142. container(id) {
  143. uni.$u.http.get('/api/container-base', {
  144. params: {
  145. is_page: 0,
  146. province_id: this.province_id,
  147. country_id: this.country_id,
  148. transport_type_id: id,
  149. type: this.goodstype,
  150. weight: this.weight,
  151. length: this.length,
  152. width: this.width,
  153. height: this.height,
  154. }
  155. }).then((res) => {
  156. this.containerList = res
  157. this.estimated_arrived_date = res[0].estimated_arrived_date
  158. this.dateid = res[0].id
  159. if (this.language == 'en-US') {
  160. this.rightname = res[0].name_en
  161. }
  162. if (this.language == 'es-ES') {
  163. this.rightname = res[0].name_es
  164. }
  165. if (this.language == 'it-IT') {
  166. this.rightname = res[0].name_ita
  167. }
  168. if (this.language == 'zh-CN') {
  169. this.rightname = res[0].name_cn
  170. }
  171. this.unit_price = res[0].unit_price
  172. }).catch(() => {
  173. })
  174. },
  175. transport() {
  176. uni.$u.http.get('/api/transport-type', {
  177. params: {
  178. province_id: this.province_id,
  179. country_id: this.country_id
  180. }
  181. }).then((res) => {
  182. this.transportList = res
  183. if (this.typeida) {
  184. console.log(this.typeida);
  185. this.leftchange = this.leftchangea
  186. this.rightchange = this.rightchangea
  187. this.container(this.typeida)
  188. this.typeid = this.transportList[0].id
  189. } else {
  190. this.leftchange = index
  191. this.typeid = res[0].id
  192. this.container(res[0].id)
  193. if (this.language == 'en-US') {
  194. this.leftname = item.name_en
  195. }
  196. if (this.language == 'es-ES') {
  197. this.leftname = item.name_es
  198. }
  199. if (this.language == 'it-IT') {
  200. this.leftname = item.name_ita
  201. }
  202. if (this.language == 'zh-CN') {
  203. this.leftname = item.name_cn
  204. }
  205. }
  206. }).catch(() => {
  207. })
  208. },
  209. //左边切换
  210. changea(item, index) {
  211. this.leftchange = index
  212. this.typeid = item.id
  213. this.container(item.id)
  214. this.rightname = '',
  215. this.dateid = ''
  216. if (this.language == 'en-US') {
  217. this.leftname = item.name_en
  218. }
  219. if (this.language == 'es-ES') {
  220. this.leftname = item.name_es
  221. }
  222. if (this.language == 'it-IT') {
  223. this.leftname = item.name_ita
  224. }
  225. if (this.language == 'zh-CN') {
  226. this.leftname = item.name_cn
  227. }
  228. },
  229. //右边切换
  230. change(item, idx) {
  231. this.rightchange = idx
  232. this.dateid = item.id
  233. if (this.language == 'en-US') {
  234. this.rightname = item.name_en
  235. }
  236. if (this.language == 'es-ES') {
  237. this.rightname = item.name_es
  238. }
  239. if (this.language == 'it-IT') {
  240. this.rightname = item.name_ita
  241. }
  242. if (this.language == 'zh-CN') {
  243. this.rightname = item.name_cn
  244. }
  245. this.unit_price = item.unit_price
  246. },
  247. close() {
  248. this.$emit('close')
  249. },
  250. enter() {
  251. if (this.dateid == '') {
  252. this.$u.toast('请选择货柜')
  253. } else {
  254. this.$emit('success', {
  255. dateid: this.dateid,
  256. rightname: this.rightname,
  257. leftname: this.leftname,
  258. unit_price: this.unit_price,
  259. leftchange: this.leftchange,
  260. rightchange: this.rightchange,
  261. typeid: this.typeid
  262. })
  263. }
  264. }
  265. }
  266. }
  267. </script>
  268. <style lang="scss" scoped>
  269. .iitem {
  270. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  271. box-sizing: border-box;
  272. }
  273. .price {
  274. font-family: SFPro, SFPro;
  275. font-weight: 500;
  276. font-size: 24rpx;
  277. color: #F83224;
  278. line-height: 28rpx;
  279. text-align: left;
  280. font-style: normal;
  281. }
  282. .right {
  283. flex: 1;
  284. width: 474rpx;
  285. height: 642rpx;
  286. }
  287. .bottom {
  288. width: 750rpx;
  289. // height: 166rpx;
  290. background: #FFFFFF;
  291. padding: 20rpx 24rpx 0;
  292. box-sizing: border-box;
  293. }
  294. .btn {
  295. width: 702rpx;
  296. height: 84rpx;
  297. background: #F83224;
  298. border-radius: 44rpx;
  299. font-family: PingFangSC, PingFang SC;
  300. font-weight: 500;
  301. font-size: 32rpx;
  302. color: #FFFFFF;
  303. line-height: 84rpx;
  304. text-align: center;
  305. font-style: normal;
  306. }
  307. .title {
  308. font-family: PingFangSC, PingFang SC;
  309. font-weight: 500;
  310. font-size: 36rpx;
  311. color: #333333;
  312. line-height: 50rpx;
  313. text-align: left;
  314. font-style: normal;
  315. }
  316. .left {
  317. width: 212rpx;
  318. height: 642rpx;
  319. }
  320. .ititle {
  321. font-family: PingFangSC, PingFang SC;
  322. font-weight: 500;
  323. font-size: 28rpx;
  324. color: #222222;
  325. line-height: 40rpx;
  326. text-align: left;
  327. font-style: normal;
  328. }
  329. .itime {
  330. font-family: PingFangSC, PingFang SC;
  331. font-weight: 400;
  332. font-size: 20rpx;
  333. color: #333333;
  334. line-height: 28rpx;
  335. text-align: center;
  336. font-style: normal;
  337. }
  338. </style>