counter.vue 12 KB

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