counter.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. <template>
  2. <!-- 物流报价器 -->
  3. <view class="back">
  4. <!-- 城市 -->
  5. <view class="add u-flex u-row-around">
  6. <!-- <text class='address' @click="change(0)">{{original||i18n.Starting}}</text> -->
  7. <text class='address'>{{i18n.inland}}</text>
  8. <image src="static/images/arrows.png" mode="" style="width: 130rpx;height: 10rpx;"></image>
  9. <text class='address' @click="change(1)">{{bourn||i18n.destination}}</text>
  10. </view>
  11. <!-- 商品类型 -->
  12. <view class="type">
  13. <view class="title u-flex">
  14. <text>{{i18n.shoptype}}</text>
  15. <image src="" mode="" style="width: 12rpx;height: 12rpx;"></image>
  16. </view>
  17. <view class="u-flex" style="margin-top: 24rpx;">
  18. <view :class="index==idx?'left':'right'" @click="good(item,idx)" style="margin-right: 20rpx;"
  19. v-for="(item,idx) in goods" :key="idx">
  20. {{item.value=='normal'? i18n.Normal :i18n.special}}
  21. </view>
  22. <!-- <view class="right" style="margin-left: 20rpx;">特殊商品</view> -->
  23. </view>
  24. </view>
  25. <!-- 跨境物流 -->
  26. <view class="logistics u-flex u-row-between">
  27. <text style="font-weight: 600;">{{i18n.flow}}</text>
  28. <view class="u-flex" @click="changewu">
  29. <text class="change">{{leftname?leftname+' | '+rightname : i18n.selection}}</text>
  30. <u-icon name="arrow-right" size='16'></u-icon>
  31. </view>
  32. </view>
  33. <!-- 商品重量 -->
  34. <view class="weight ">
  35. <view class="u-flex u-row-between">
  36. <text style="font-weight: 600;">{{i18n.Commodity}}</text>
  37. <u-number-box v-model="value">
  38. <view slot="minus" class="minus">
  39. <u-icon name="minus" size="12"></u-icon>
  40. </view>
  41. <view slot="input"
  42. style="width: 50px;text-align: center;height: 30px;line-height: 30px;background: #f5f5f5;"
  43. class="input u-flex">
  44. <input type="text" v-model="value" />
  45. <text>kg</text>
  46. </view>
  47. <view slot="plus" class="plus">
  48. <u-icon name="plus" size="12"></u-icon>
  49. </view>
  50. </u-number-box>
  51. </view>
  52. <view class="u-flex u-row-between" style="margin-top: 30rpx;">
  53. <text style="font-weight: 600;">{{i18n.volume}}</text>
  54. <text style="font-size: 20rpx;
  55. color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
  56. </view>
  57. <view class="u-flex u-row-between" style="margin-top: 32rpx;">
  58. <view class="vite u-flex">
  59. <input type="text" :placeholder="i18n.length" v-model="length" />
  60. <text>cm</text>
  61. </view>
  62. <view class="">*</view>
  63. <view class="vite u-flex">
  64. <input type="text" :placeholder="i18n.wide" v-model="width" />
  65. <text>cm</text>
  66. </view>
  67. <view class="">*</view>
  68. <view class="vite u-flex">
  69. <input type="text" :placeholder="i18n.height" v-model="height" />
  70. <text>cm</text>
  71. </view>
  72. </view>
  73. </view>
  74. <!-- 获取价格 -->
  75. <view @click="gain" :class="gat==1?'yuan':'price'">
  76. {{i18n.Acquisition}}
  77. </view>
  78. <view class="gain" v-if="gatShow">
  79. <view class="">
  80. <text class='weigh'>{{i18n.Calculated}}:</text>
  81. <text class='weigh' style="color: rgba(34, 34, 34, 1);">{{value}}kg</text>
  82. </view>
  83. <view class="u-flex u-row-between"
  84. style="border-top: 2rpx solid #979797;margin-top: 32rpx;padding-top: 20rpx;">
  85. <view class="">
  86. <text class='weigh'>{{i18n.Estimated}}</text>
  87. <text style="margin-left: 6rpx;" class='red'>¥</text>
  88. <text class='red' style="font-size: 32rpx;">{{money}}</text>
  89. <text class='red'>{{i18n.since}}</text>
  90. </view>
  91. <view class="info" @click="logistics">{{i18n.details}}</view>
  92. </view>
  93. </view>
  94. <!-- 地址选择 -->
  95. <!-- <u-picker :show="show" ref="uPicker" keyName="name" :columns="columns" @confirm="confirm"
  96. @change="changeHandler"></u-picker> -->
  97. <u-picker :show="show" ref="uPicker" keyName="name" :columns="columns" @confirm="confirm"
  98. @change="changeHandler"></u-picker>
  99. <!-- 跨境物流 -->
  100. <u-popup round='28' :show="logshow" @close="close">
  101. <view class="pop">
  102. <kj-flow :goodstype='goodstype' :province_id='province_id' ref="child" @success='success'
  103. @close='logshow=false' :country_id='country_id'></kj-flow>
  104. </view>
  105. </u-popup>
  106. </view>
  107. </template>
  108. <script>
  109. export default {
  110. data() {
  111. return {
  112. logshow: false, //物流选择
  113. value: 1,
  114. show: false,
  115. original: '', //起始地
  116. bourn: '', //目的地
  117. type: 0,
  118. gat: 0,
  119. gatShow: false,
  120. columns: [
  121. ],
  122. columnData: [
  123. ],
  124. goods: [],
  125. index: 0,
  126. domestic: 1,
  127. province_id: '',
  128. country_id: '',
  129. goodstype: 'normal',
  130. container_id: '', //货柜id
  131. leftname: '',
  132. rightname: '',
  133. money: '',
  134. length: '',
  135. width: '',
  136. height: ''
  137. };
  138. },
  139. onLoad() {
  140. // this.goods = [{
  141. // name: this.i18n.Normal
  142. // },
  143. // {
  144. // name: this.i18n.special
  145. // }
  146. // ]
  147. },
  148. onShow() {
  149. uni.setNavigationBarTitle({
  150. title: this.i18n.compute
  151. })
  152. // this.getarea()
  153. this.goodtype()
  154. },
  155. computed: {
  156. i18n() {
  157. return this.$t('index')
  158. }
  159. },
  160. methods: {
  161. //商品类型
  162. goodtype() {
  163. uni.$u.http.get('/api/express-goods-type', ).then((res) => {
  164. this.goods = res
  165. }).catch(() => {
  166. })
  167. },
  168. //物流选择
  169. changewu() {
  170. // if (this.province_id) {
  171. if (this.country_id) {
  172. this.logshow = true
  173. setTimeout(() => {
  174. this.$refs.child.transport();
  175. }, 800)
  176. } else {
  177. this.$u.toast(this.i18n.selectcity)
  178. }
  179. },
  180. //物流计算器
  181. calculate() {
  182. if (this.container_id == '') {
  183. this.$u.toast(this.i18n.container)
  184. return
  185. }
  186. uni.$u.http.get('/api/express-order/calculate', {
  187. params: {
  188. container_id: this.container_id, // 是 String 货柜ID
  189. weight: this.value, // 是 String 重量(kg)
  190. length: this.length, // 是 String 长(m)
  191. width: this.width, // 是 String 宽(m)
  192. height: this.height, // 是 String 高(m)
  193. type: this.goodstype, // 是 String 商品类型: normal. 普通商品, special.特殊商品
  194. }
  195. }).then((res) => {
  196. this.money = res
  197. }).catch(() => {
  198. })
  199. },
  200. //地区列表
  201. // getarea() {
  202. // this.columns = []
  203. // this.columnData = []
  204. // uni.$u.http.get('/api/area/tree', {
  205. // params: {
  206. // is_domestic: this.domestic,
  207. // pid: 0
  208. // }
  209. // }).then((res) => {
  210. // console.log(res)
  211. // // this.columns.splice(0,1, [{name:res[0].name}])
  212. // this.columns = [res]
  213. // this.columns[1] = res[0].children
  214. // // this.columnData[0] = res[0].children
  215. // res.forEach(item => {
  216. // this.columnData.push(item.children)
  217. // })
  218. // }).catch(() => {
  219. // })
  220. // },
  221. getarea() {
  222. this.columns = []
  223. this.columnData = []
  224. uni.$u.http.get(`/api/container/country`).then((res) => {
  225. this.columns.push(res)
  226. });
  227. console.log(this.columns);
  228. // uni.$u.http.get('/api/area/tree', {
  229. // params: {
  230. // is_domestic: this.domestic,
  231. // pid: 0
  232. // }
  233. // }).then((res) => {
  234. // console.log(res)
  235. // // this.columns.splice(0,1, [{name:res[0].name}])
  236. // this.columns = [res]
  237. // this.columns[1] = res[0].children
  238. // // this.columnData[0] = res[0].children
  239. // res.forEach(item => {
  240. // this.columnData.push(item.children)
  241. // })
  242. // }).catch(() => {
  243. // })
  244. },
  245. success(msg) {
  246. this.logshow = false
  247. console.log(msg);
  248. this.leftname = msg.leftname
  249. this.container_id = msg.dateid
  250. this.rightname = msg.rightname
  251. },
  252. close() {
  253. this.logshow = false
  254. },
  255. //切换商品类型
  256. good(item, idx) {
  257. this.goodstype = item.value
  258. this.index = idx
  259. },
  260. //物流详情
  261. logistics() {
  262. uni.navigateTo({
  263. url: '/pageA/logisticsinfo?weight=' + this.value + '&money=' + this.money
  264. })
  265. },
  266. //获取价格
  267. gain() {
  268. if (this.container_id == '') {
  269. this.$u.toast(this.i18n.container)
  270. } else {
  271. this.gat = 1
  272. this.gatShow = true
  273. this.calculate()
  274. }
  275. },
  276. //开启地址选择器
  277. change(type) {
  278. this.type = type
  279. this.show = true
  280. if (type == 0) {
  281. this.domestic = 1
  282. this.getarea()
  283. } else {
  284. this.domestic = 0
  285. this.getarea()
  286. }
  287. },
  288. // changeHandler(e) {
  289. // const {
  290. // columnIndex,
  291. // value,
  292. // values, // values为当前变化列的数组内容
  293. // index,
  294. // // 微信小程序无法将picker实例传出来,只能通过ref操作
  295. // picker = this.$refs.uPicker
  296. // } = e
  297. // // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  298. // if (columnIndex === 0) {
  299. // // picker为选择器this实例,变化第二列对应的选项
  300. // picker.setColumnValues(1, this.columnData[index])
  301. // }
  302. // },
  303. changeHandler(e) {
  304. console.log(e);
  305. // const {
  306. // columnIndex,
  307. // value,
  308. // values, // values为当前变化列的数组内容
  309. // index,
  310. // // 微信小程序无法将picker实例传出来,只能通过ref操作
  311. // picker = this.$refs.uPicker
  312. // } = e
  313. // // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  314. // if (columnIndex === 0) {
  315. // // picker为选择器this实例,变化第二列对应的选项
  316. // picker.setColumnValues(1, this.columnData[index])
  317. // }
  318. },
  319. // 回调参数为包含columnIndex、value、values
  320. // confirm(e) {
  321. // console.log('confirm', e)
  322. // this.show = false
  323. // if (this.type == 0) {
  324. // this.original = e.value[0].name + '-' + e.value[1].name
  325. // // console.log(e.value[0]);
  326. // } else {
  327. // this.bourn = e.value[0].name + '-' + e.value[1].name
  328. // this.province_id = e.value[1].id
  329. // this.country_id = e.value[0].id
  330. // }
  331. // }
  332. confirm(e) {
  333. console.log('confirm', e)
  334. this.show = false
  335. if (this.type == 0) {
  336. this.original = e.value[0].name
  337. // console.log(e.value[0]);
  338. } else {
  339. this.bourn = e.value[0].name
  340. // this.province_id = e.value[1].id
  341. this.country_id = e.value[0].id
  342. }
  343. }
  344. }
  345. }
  346. </script>
  347. <style lang="scss" scoped>
  348. .vite {
  349. width: 198rpx;
  350. height: 60rpx;
  351. background: #F4F4F4;
  352. border-radius: 36rpx;
  353. padding: 12rpx 28rpx;
  354. box-sizing: border-box;
  355. }
  356. .pop {
  357. font-family: PingFangSC, PingFang SC;
  358. font-weight: 500;
  359. font-size: 36rpx;
  360. color: #333333;
  361. line-height: 50rpx;
  362. text-align: left;
  363. font-style: normal;
  364. padding: 32rpx 28rpx 0 0;
  365. box-sizing: border-box;
  366. }
  367. .back {
  368. background-color: rgba(244, 244, 244, 1);
  369. padding: 20rpx 24rpx;
  370. box-sizing: border-box;
  371. .yuan {
  372. width: 702rpx;
  373. height: 96rpx;
  374. background: #F83224;
  375. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  376. border-radius: 48rpx;
  377. margin-top: 62rpx;
  378. font-family: PingFangSC, PingFang SC;
  379. font-weight: 500;
  380. font-size: 32rpx;
  381. color: #FFFFFF;
  382. line-height: 96rpx;
  383. text-align: center;
  384. font-style: normal;
  385. }
  386. .gain {
  387. width: 702rpx;
  388. height: 208rpx;
  389. background: #FFFFFF;
  390. border-radius: 16rpx;
  391. margin-top: 68rpx;
  392. padding: 40rpx 24rpx 34rpx 24rpx;
  393. box-sizing: border-box;
  394. .weigh {
  395. font-family: PingFangSC, PingFang SC;
  396. font-weight: 400;
  397. font-size: 28rpx;
  398. color: #777777;
  399. line-height: 40rpx;
  400. text-align: left;
  401. font-style: normal;
  402. }
  403. .info {
  404. font-family: PingFangSC, PingFang SC;
  405. font-weight: 400;
  406. font-size: 24rpx;
  407. color: #333333;
  408. line-height: 34rpx;
  409. text-align: left;
  410. font-style: normal;
  411. }
  412. .red {
  413. font-family: HarmonyOS_Sans_Medium;
  414. font-size: 20rpx;
  415. color: #F83224;
  416. line-height: 26rpx;
  417. text-align: left;
  418. font-style: normal;
  419. }
  420. }
  421. //步进器
  422. .minus {
  423. width: 22px;
  424. height: 22px;
  425. // border-width: 1px;
  426. // border-color: #E6E6E6;
  427. // border-style: solid;
  428. border-top-left-radius: 100px;
  429. border-top-right-radius: 100px;
  430. border-bottom-left-radius: 100px;
  431. border-bottom-right-radius: 100px;
  432. @include flex;
  433. justify-content: center;
  434. align-items: center;
  435. }
  436. .input {
  437. padding: 0 10px;
  438. }
  439. .plus {
  440. width: 22px;
  441. height: 22px;
  442. // background-color: #FF0000;
  443. border-radius: 50%;
  444. /* #ifndef APP-NVUE */
  445. display: flex;
  446. /* #endif */
  447. justify-content: center;
  448. align-items: center;
  449. }
  450. //商品重量
  451. .weight {
  452. padding: 34rpx 20rpx;
  453. box-sizing: border-box;
  454. width: 702rpx;
  455. // height: 108rpx;
  456. background: #FFFFFF;
  457. border-radius: 16rpx;
  458. margin-top: 20rpx;
  459. }
  460. //获取价格
  461. .price {
  462. width: 702rpx;
  463. height: 96rpx;
  464. background: #F83224;
  465. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  466. border-radius: 48rpx;
  467. position: fixed;
  468. bottom: 72rpx;
  469. left: 24rpx;
  470. font-family: PingFangSC, PingFang SC;
  471. font-weight: 500;
  472. font-size: 32rpx;
  473. color: #FFFFFF;
  474. line-height: 96rpx;
  475. text-align: center;
  476. font-style: normal;
  477. }
  478. //跨境物流
  479. .logistics {
  480. width: 702rpx;
  481. height: 96rpx;
  482. background: #FFFFFF;
  483. border-radius: 16rpx;
  484. padding: 28rpx 22rpx;
  485. box-sizing: border-box;
  486. margin-top: 20rpx;
  487. .change {
  488. font-family: PingFangSC, PingFang SC;
  489. font-weight: 400;
  490. font-size: 28rpx;
  491. color: #F83224;
  492. line-height: 40rpx;
  493. text-align: left;
  494. font-style: normal;
  495. margin-right: 8rpx;
  496. }
  497. }
  498. // 商品类型
  499. .type {
  500. padding: 28rpx 20rpx;
  501. box-sizing: border-box;
  502. width: 702rpx;
  503. height: 190rpx;
  504. background: #FFFFFF;
  505. border-radius: 16rpx;
  506. margin-top: 20rpx;
  507. .title {
  508. font-family: PingFangSC, PingFang SC;
  509. font-weight: 600;
  510. font-size: 28rpx;
  511. color: #222222;
  512. line-height: 40rpx;
  513. text-align: left;
  514. font-style: normal;
  515. }
  516. .left {
  517. // width: 202rpx;
  518. padding: 0 30rpx;
  519. height: 60rpx;
  520. border-radius: 36rpx;
  521. border: 1rpx solid #F83224;
  522. font-family: PingFangSC, PingFang SC;
  523. font-weight: 400;
  524. font-size: 26rpx;
  525. color: #F83224;
  526. line-height: 60rpx;
  527. text-align: center;
  528. font-style: normal;
  529. box-sizing: border-box;
  530. }
  531. .right {
  532. // width: 202rpx;
  533. height: 60rpx;
  534. padding: 0 30rpx;
  535. border-radius: 36rpx;
  536. border: 1rpx solid #979797;
  537. font-family: PingFangSC, PingFang SC;
  538. font-weight: 400;
  539. font-size: 26rpx;
  540. color: #979797;
  541. line-height: 60rpx;
  542. box-sizing: border-box;
  543. text-align: center;
  544. font-style: normal;
  545. }
  546. }
  547. //城市
  548. .add {
  549. width: 702rpx;
  550. height: 144rpx;
  551. background: #FFFFFF;
  552. border-radius: 16rpx;
  553. padding: 50rpx 8rpx;
  554. box-sizing: border-box;
  555. .address {
  556. font-family: PingFangSC, PingFang SC;
  557. font-weight: 600;
  558. font-size: 32rpx;
  559. color: #222222;
  560. line-height: 44rpx;
  561. text-align: right;
  562. font-style: normal;
  563. }
  564. }
  565. }
  566. </style>