kj-flow.vue 7.7 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: String,
  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. type: this.goodstype
  131. }
  132. }).then((res) => {
  133. this.containerList = res
  134. this.estimated_arrived_date = res[0].estimated_arrived_date
  135. this.dateid = res[0].id
  136. if (this.language == 'en-US') {
  137. this.rightname = res[0].name_en
  138. }
  139. if (this.language == 'es-ES') {
  140. this.rightname = res[0].name_es
  141. }
  142. if (this.language == 'it-IT') {
  143. this.rightname = res[0].name_ita
  144. }
  145. if (this.language == 'zh-CN') {
  146. this.rightname = res[0].name_cn
  147. }
  148. this.unit_price = res[0].unit_price
  149. }).catch(() => {
  150. })
  151. },
  152. transport() {
  153. uni.$u.http.get('/api/transport-type').then((res) => {
  154. this.transportList = res
  155. if (this.typeida) {
  156. console.log(this.typeida);
  157. this.leftchange = this.leftchangea
  158. this.rightchange = this.rightchangea
  159. this.container(this.typeida)
  160. this.typeid = this.transportList[0].id
  161. } else {
  162. this.container(res[0].id)
  163. }
  164. }).catch(() => {
  165. })
  166. },
  167. //左边切换
  168. changea(item, index) {
  169. this.leftchange = index
  170. this.typeid = item.id
  171. this.container(item.id)
  172. this.rightname = '',
  173. this.dateid = ''
  174. if (this.language == 'en-US') {
  175. this.leftname = item.name_en
  176. }
  177. if (this.language == 'es-ES') {
  178. this.leftname = item.name_es
  179. }
  180. if (this.language == 'it-IT') {
  181. this.leftname = item.name_ita
  182. }
  183. if (this.language == 'zh-CN') {
  184. this.leftname = item.name_cn
  185. }
  186. },
  187. //右边切换
  188. change(item, idx) {
  189. this.rightchange = idx
  190. this.dateid = item.id
  191. if (this.language == 'en-US') {
  192. this.rightname = item.name_en
  193. }
  194. if (this.language == 'es-ES') {
  195. this.rightname = item.name_es
  196. }
  197. if (this.language == 'it-IT') {
  198. this.rightname = item.name_ita
  199. }
  200. if (this.language == 'zh-CN') {
  201. this.rightname = item.name_cn
  202. }
  203. this.unit_price = item.unit_price
  204. },
  205. close() {
  206. this.$emit('close')
  207. },
  208. enter() {
  209. if (this.dateid == '') {
  210. this.$u.toast('请选择货柜')
  211. } else {
  212. this.$emit('success', {
  213. dateid: this.dateid,
  214. rightname: this.rightname,
  215. leftname: this.leftname,
  216. unit_price: this.unit_price,
  217. leftchange: this.leftchange,
  218. rightchange: this.rightchange,
  219. typeid: this.typeid
  220. })
  221. }
  222. }
  223. }
  224. }
  225. </script>
  226. <style lang="scss" scoped>
  227. .iitem {
  228. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  229. box-sizing: border-box;
  230. }
  231. .price {
  232. font-family: SFPro, SFPro;
  233. font-weight: 500;
  234. font-size: 24rpx;
  235. color: #F83224;
  236. line-height: 28rpx;
  237. text-align: left;
  238. font-style: normal;
  239. }
  240. .right {
  241. flex: 1;
  242. width: 474rpx;
  243. height: 642rpx;
  244. }
  245. .bottom {
  246. width: 750rpx;
  247. height: 166rpx;
  248. background: #FFFFFF;
  249. padding: 20rpx 24rpx;
  250. box-sizing: border-box;
  251. }
  252. .btn {
  253. width: 702rpx;
  254. height: 84rpx;
  255. background: #F83224;
  256. border-radius: 44rpx;
  257. font-family: PingFangSC, PingFang SC;
  258. font-weight: 500;
  259. font-size: 32rpx;
  260. color: #FFFFFF;
  261. line-height: 84rpx;
  262. text-align: center;
  263. font-style: normal;
  264. }
  265. .title {
  266. font-family: PingFangSC, PingFang SC;
  267. font-weight: 500;
  268. font-size: 36rpx;
  269. color: #333333;
  270. line-height: 50rpx;
  271. text-align: left;
  272. font-style: normal;
  273. }
  274. .left {
  275. width: 212rpx;
  276. height: 642rpx;
  277. }
  278. .ititle {
  279. font-family: PingFangSC, PingFang SC;
  280. font-weight: 500;
  281. font-size: 28rpx;
  282. color: #222222;
  283. line-height: 40rpx;
  284. text-align: left;
  285. font-style: normal;
  286. }
  287. .itime {
  288. font-family: PingFangSC, PingFang SC;
  289. font-weight: 400;
  290. font-size: 20rpx;
  291. color: #333333;
  292. line-height: 28rpx;
  293. text-align: center;
  294. font-style: normal;
  295. }
  296. </style>