kj-flow.vue 8.0 KB

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