kj-flow.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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 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.begin_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="bottom">
  60. <view class="btn" @click="enter">{{i18n.enter}}</view>
  61. </view>
  62. <view class=""></view>
  63. </view>
  64. </template>
  65. <script>
  66. export default {
  67. props: {
  68. province_id: {
  69. typeof: Number
  70. },
  71. goodstype: {
  72. typeof: '',
  73. default: "normal"
  74. },
  75. leftchangea: {
  76. type: String,
  77. default: ''
  78. },
  79. rightchangea: {
  80. type: String,
  81. default: ''
  82. },
  83. typeida: {
  84. type: String,
  85. default: ''
  86. },
  87. language:{
  88. type:'String',
  89. default:'zh-CN'
  90. }
  91. },
  92. name: "kj-flow",
  93. data() {
  94. return {
  95. leftchange: 0,
  96. rightchange: 0,
  97. containerList: [],
  98. transportList: [],
  99. estimated_arrived_date: '',
  100. leftname: '',
  101. rightname: '',
  102. dateid: '',
  103. unit_price: '',
  104. // language: 'zh-CN',
  105. typeid: ''
  106. };
  107. },
  108. created() {
  109. this.transport()
  110. },
  111. mounted() {
  112. // if (uni.getStorageSync('language') != '') {
  113. // this.language = uni.getStorageSync('language')
  114. // console.log('222222',this.language);
  115. // }
  116. },
  117. computed: {
  118. i18n() {
  119. return this.$t('index')
  120. },
  121. },
  122. methods: {
  123. //货柜列表
  124. container(id) {
  125. uni.$u.http.get('/api/container-base', {
  126. params: {
  127. is_page: 0,
  128. province_id: this.province_id,
  129. transport_type_id: id
  130. }
  131. }).then((res) => {
  132. this.containerList = res
  133. this.estimated_arrived_date = res[0].estimated_arrived_date
  134. this.dateid = res[0].id
  135. if (this.language == 'en-US') {
  136. this.rightname = res[0].name_en
  137. }
  138. if (this.language == 'es-ES') {
  139. this.rightname = res[0].name_es
  140. }
  141. if (this.language == 'it-IT') {
  142. this.rightname = res[0].name_ita
  143. }
  144. if (this.language == 'zh-CN') {
  145. this.rightname = res[0].name_cn
  146. }
  147. this.unit_price = res[0].unit_price
  148. }).catch(() => {
  149. })
  150. },
  151. transport() {
  152. uni.$u.http.get('/api/transport-type').then((res) => {
  153. this.transportList = res
  154. if (this.typeida) {
  155. console.log(this.typeida);
  156. this.leftchange = this.leftchangea
  157. this.rightchange = this.rightchangea
  158. this.container(this.typeida)
  159. this.typeid = this.transportList[0].id
  160. } else {
  161. this.container(res[0].id)
  162. }
  163. }).catch(() => {
  164. })
  165. },
  166. //左边切换
  167. changea(item, index) {
  168. this.leftchange = index
  169. this.typeid = item.id
  170. this.container(item.id)
  171. this.rightname = '',
  172. this.dateid = ''
  173. if (this.language == 'en-US') {
  174. this.leftname = item.name_en
  175. }
  176. if (this.language == 'es-ES') {
  177. this.leftname = item.name_es
  178. }
  179. if (this.language == 'it-IT') {
  180. this.leftname = item.name_ita
  181. }
  182. if (this.language == 'zh-CN') {
  183. this.leftname = item.name_cn
  184. }
  185. },
  186. //右边切换
  187. change(item, idx) {
  188. this.rightchange = idx
  189. this.dateid = item.id
  190. if (this.language == 'en-US') {
  191. this.rightname = item.name_en
  192. }
  193. if (this.language == 'es-ES') {
  194. this.rightname = item.name_es
  195. }
  196. if (this.language == 'it-IT') {
  197. this.rightname = item.name_ita
  198. }
  199. if (this.language == 'zh-CN') {
  200. this.rightname = item.name_cn
  201. }
  202. this.unit_price = item.unit_price
  203. },
  204. close() {
  205. this.$emit('close')
  206. },
  207. enter() {
  208. if (this.dateid == '') {
  209. this.$u.toast('请选择货柜')
  210. } else {
  211. this.$emit('success', {
  212. dateid: this.dateid,
  213. rightname: this.rightname,
  214. leftname: this.leftname,
  215. unit_price: this.unit_price,
  216. leftchange: this.leftchange,
  217. rightchange: this.rightchange,
  218. typeid: this.typeid
  219. })
  220. }
  221. }
  222. }
  223. }
  224. </script>
  225. <style lang="scss" scoped>
  226. .iitem {
  227. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  228. box-sizing: border-box;
  229. }
  230. .price {
  231. font-family: SFPro, SFPro;
  232. font-weight: 500;
  233. font-size: 24rpx;
  234. color: #F83224;
  235. line-height: 28rpx;
  236. text-align: left;
  237. font-style: normal;
  238. }
  239. .right {
  240. flex: 1;
  241. width: 474rpx;
  242. height: 642rpx;
  243. }
  244. .bottom {
  245. width: 750rpx;
  246. height: 166rpx;
  247. background: #FFFFFF;
  248. padding: 20rpx 24rpx;
  249. box-sizing: border-box;
  250. }
  251. .btn {
  252. width: 702rpx;
  253. height: 84rpx;
  254. background: #F83224;
  255. border-radius: 44rpx;
  256. font-family: PingFangSC, PingFang SC;
  257. font-weight: 500;
  258. font-size: 32rpx;
  259. color: #FFFFFF;
  260. line-height: 84rpx;
  261. text-align: center;
  262. font-style: normal;
  263. }
  264. .title {
  265. font-family: PingFangSC, PingFang SC;
  266. font-weight: 500;
  267. font-size: 36rpx;
  268. color: #333333;
  269. line-height: 50rpx;
  270. text-align: left;
  271. font-style: normal;
  272. }
  273. .left {
  274. width: 212rpx;
  275. height: 642rpx;
  276. }
  277. .ititle {
  278. font-family: PingFangSC, PingFang SC;
  279. font-weight: 500;
  280. font-size: 28rpx;
  281. color: #222222;
  282. line-height: 40rpx;
  283. text-align: left;
  284. font-style: normal;
  285. }
  286. .itime {
  287. font-family: PingFangSC, PingFang SC;
  288. font-weight: 400;
  289. font-size: 20rpx;
  290. color: #333333;
  291. line-height: 28rpx;
  292. text-align: center;
  293. font-style: normal;
  294. }
  295. </style>