delivery.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. <template>
  2. <!-- 寄快递 -->
  3. <view class="" style="padding: 0 24rpx;">
  4. <view style="position: relative;padding-bottom: 20rpx;">
  5. <!-- 自定义导航栏 -->
  6. <image src="/static/images/index/back.png"
  7. style="width: 750rpx;height: 1200rpx;position: absolute;top: 0;z-index: -1;left:-24rpx;" mode="">
  8. </image>
  9. <u-navbar :autoBack='true' title='寄快递' bgColor="rgba(248, 50, 36, 0.2)" :placeholder='true'
  10. :safeAreaInsetTop="true" style="position: absolute;z-index: 110;background-color: rgba(0,0,0,0);">
  11. <view class="u-nav-slot" slot="left" style="display: flex;">
  12. <u-icon name="arrow-left" color="rgba(0, 0, 0, 1)" size="24" @click="uni.navigateBack()"></u-icon>
  13. </view>
  14. </u-navbar>
  15. <!-- 地址 -->
  16. <view class="address">
  17. <view class="left u-flex" style="display: flex;" @click="send">
  18. <view class="u-row-between left" style="display: flex;flex-direction: column;">
  19. <image src="/static/express/ji.png" style='width: 40rpx;;height:40rpx ;' mode=""></image>
  20. <image @click.stop="changeadd" src="/static/express/change.png"
  21. style='width: 40rpx;;height:40rpx ;' mode="">
  22. </image>
  23. </view>
  24. <view class=" u-row-between left"
  25. style="flex: 1;margin-left: 28rpx;border-bottom:2rpx solid rgba(151, 151, 151, 0.08) ;display: flex;">
  26. <view v-if="JSON.stringify(topadd)==='{}'" class="u-row-between " style="">
  27. <view class="pople">{{i18n.sender}}</view>
  28. <view class="jiadd" style="margin-top: 14rpx;">{{i18n.informat}}</view>
  29. </view>
  30. <view v-else class="u-row-between " style="" @click="send">
  31. <view class="">
  32. <text class="topname">{{topadd.name}}</text>
  33. <text class="topaddress"
  34. style="margin-left: 8rpx;">{{replacePhoneToStar(topadd.mobile)}}</text>
  35. </view>
  36. <view class="topaddress" style="margin-top: 14rpx;">{{topadd.full_address}}</view>
  37. </view>
  38. <view class="u-flex" @click.stop="addbook(0)">
  39. <view class="" style="color: rgba(151, 151, 151, 1);">|</view>
  40. <text class="right">{{i18n.addressbook}}</text>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="left u-flex"
  45. style="display: flex;margin-top: 26rpx;border-bottom:2rpx solid rgba(151, 151, 151, 0.08)"
  46. @click="recipe">
  47. <view class="u-row-between left" style="display: flex;flex-direction: column;">
  48. <image src="/static/express/shou.png" style='width: 40rpx;;height:40rpx ;' mode=""></image>
  49. <!-- <image src="../../static/express/change.png" style='width: 40rpx;;height:40rpx ;' mode=""> -->
  50. </image>
  51. </view>
  52. <view class=" u-row-between left" style="flex: 1;margin-left: 28rpx;display: flex;">
  53. <view v-if="JSON.stringify(bottomadd)==='{}'" class="u-row-between " style="">
  54. <view class="pople">{{i18n.recipient}}</view>
  55. <view class="jiadd" style="margin-top: 14rpx;">{{i18n.informat}}</view>
  56. </view>
  57. <view v-else class="u-row-between " style="" @click="send">
  58. <view class="">
  59. <text class="topname">{{bottomadd.name}}</text>
  60. <text class="topaddress"
  61. style="margin-left: 8rpx;">{{replacePhoneToStar(bottomadd.mobile)}}</text>
  62. </view>
  63. <view class="topaddress" style="margin-top: 14rpx;">{{bottomadd.full_address}}</view>
  64. </view>
  65. <view class="u-flex" @click.stop="addbook(1)">
  66. <view class="" style="color: rgba(151, 151, 151, 1);">|</view>
  67. <text class="right">{{i18n.addressbook}}</text>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="wup">
  73. <!-- 物品信息 -->
  74. <view class="info u-flex u-row-between">
  75. <view class="u-flex">
  76. <text class="wupin">{{i18n.item}}</text>
  77. <view class="mast">{{i18n.required}}</view>
  78. </view>
  79. <view v-if="JSON.stringify(goodinfo)==='{}'" class="u-flex" @click='goods'>
  80. <view class="change">{{i18n.selection}}</view>
  81. <image src="/static/express/next1.png" style="width: 28rpx;height: 28rpx;margin-left: 6rpx;"
  82. mode=""></image>
  83. </view>
  84. <view v-else class="goodname" @click='goods'>
  85. {{goodinfo.goodname}},{{goodinfo.weight}}kg
  86. </view>
  87. <!-- <view class="u-flex">
  88. <text class="change">{{i18n.select}}</text>
  89. <image src="/static/express/next1.png" style="width: 28rpx;height: 28rpx;margin-left: 6rpx;"
  90. mode=""></image>
  91. </view> -->
  92. </view>
  93. <!-- 跨境物流 -->
  94. <view class="info u-flex u-row-between" @click="changewu">
  95. <view class="u-flex">
  96. <text class="wupin">{{i18n.flow}}</text>
  97. </view>
  98. <view class="u-flex">
  99. <text class="change"
  100. style="color: rgba(248, 50, 36, 1);">{{leftname?leftname+' | '+rightname : i18n.selection}}</text>
  101. <!-- <text class="change" style="color: rgba(248, 50, 36, 1);">{{i18n.selection}}</text> -->
  102. <image v-if="leftname==''" src="/static/express/next1.png"
  103. style="width: 28rpx;height: 28rpx;margin-left: 6rpx;" mode=""></image>
  104. </view>
  105. </view>
  106. </view>
  107. <!-- 下一步 -->
  108. <view class="next u-flex-between" style="display: flex;">
  109. <view class="" style="flex: 1;">
  110. <view class="sum">
  111. <text>{{i18n.Estimatedprice}}</text>
  112. <text style="color: rgba(248, 50, 36, 1);">¥{{all?all:'--'}}</text>
  113. </view>
  114. <view class="deal u-flex" style="margin-top: 16rpx;">
  115. <u-checkbox-group shape='circle' v-model="checkboxValue1" placement="column"
  116. @change="checkboxChange">
  117. <u-checkbox :customStyle="{marginBottom: '8px',marginTop:'5px'}" :name="deal">
  118. </u-checkbox>
  119. </u-checkbox-group>
  120. <text>{{i18n.readandagree}}</text>
  121. <text style="color: rgba(248, 50, 36, 1);">《{{i18n.International}}》</text>
  122. </view>
  123. </view>
  124. <view class="tonext " style="" @click="next">
  125. {{i18n.next}}
  126. </view>
  127. </view>
  128. </view>
  129. <u-popup round='28' :show="logshow" @close="close">
  130. <view class="pop">
  131. <kj-flow ref="child" :goodstype="this.goodinfo.goodtype" @success='success'
  132. @close='logshow=false'></kj-flow>
  133. </view>
  134. </u-popup>
  135. </view>
  136. </template>
  137. <script>
  138. export default {
  139. data() {
  140. return {
  141. deal: -1,
  142. checkboxValue1: [],
  143. logshow: false, //物流选择
  144. language: 'zh-CN',
  145. goodinfo: {},
  146. topadd: {},
  147. bottomadd: {},
  148. leftname: '',
  149. rightname: '',
  150. container_id: '',
  151. unit_price: '',
  152. number: ''
  153. }
  154. },
  155. onLoad(options) {
  156. this.goodinfo = JSON.parse(decodeURIComponent(options.goodinfo))
  157. this.topadd = JSON.parse(decodeURIComponent(options.topadd))
  158. this.bottomadd = JSON.parse(decodeURIComponent(options.bottom))
  159. this.leftname = options.leftname
  160. this.rightname = options.rightname
  161. this.container_id = options.container_id
  162. this.unit_price = options.unit_price
  163. this.number = options.number
  164. },
  165. onShow() {
  166. if (uni.getStorageSync('language') != '') {
  167. this.language = uni.getStorageSync('language')
  168. }
  169. },
  170. computed: {
  171. i18n() {
  172. return this.$t('index')
  173. },
  174. all() {
  175. return this.unit_price * this.goodinfo.weight * this.goodinfo.number
  176. }
  177. },
  178. methods: {
  179. //跨境物流选择
  180. success(msg) {
  181. this.logshow = false
  182. this.leftname = msg.leftname
  183. this.container_id = msg.dateid
  184. this.rightname = msg.rightname
  185. this.unit_price = msg.unit_price
  186. },
  187. //改变地址
  188. changeadd() {
  189. var a = {}
  190. a = this.topadd
  191. this.topadd = this.bottomadd
  192. this.bottomadd = a
  193. this.province_id = this.bottomadd.province_id
  194. },
  195. //正则匹配手机号
  196. replacePhoneToStar: function(phone) {
  197. if (phone) {
  198. return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
  199. }
  200. },
  201. //物流选择
  202. changewu() {
  203. if (this.province_id) {
  204. this.logshow = true
  205. setTimeout(() => {
  206. this.$refs.child.transport();
  207. }, 800)
  208. } else {
  209. this.$u.toast('请先选择城市')
  210. }
  211. },
  212. //地址薄
  213. addbook(index) {
  214. var that = this
  215. uni.navigateTo({
  216. url: "/pageC/addressManagement/addressManagement?index=" + index,
  217. events: {
  218. getadd(res) {
  219. if (index == 0) {
  220. that.topadd = res
  221. console.log('topadd', that.topadd);
  222. } else {
  223. that.bottomadd = res
  224. console.log('bottom', that.bottomadd);
  225. that.province_id = that.bottomadd.province_id
  226. }
  227. }
  228. }
  229. })
  230. },
  231. //物品信息
  232. goods() {
  233. var that = this
  234. uni.navigateTo({
  235. url: '/pageB/goods',
  236. events: {
  237. goodinfo: function(res) {
  238. that.goodinfo = res
  239. }
  240. }
  241. })
  242. },
  243. close() {
  244. this.logshow = true
  245. },
  246. send() {
  247. uni.navigateTo({
  248. url: '/pageB/Senderinfor'
  249. })
  250. },
  251. recipe() {
  252. uni.navigateTo({
  253. url: '/pageB/recipientinfo'
  254. })
  255. },
  256. checkboxChange(n) {
  257. console.log('change', n);
  258. },
  259. next() {
  260. if (this.checkboxValue1.length == 0) {
  261. this.$u.toast('请勾选协议')
  262. } else if (JSON.stringify(this.goodinfo) === '{}') {
  263. this.$u.toast('请填写物品信息')
  264. } else if (this.leftname == '') {
  265. this.$u.toast('请选择物流方式')
  266. } else {
  267. uni.navigateTo({
  268. url: "/pageB/end?goodinfo=" + encodeURIComponent(JSON.stringify(this.goodinfo)) +
  269. "&topadd=" + encodeURIComponent(JSON.stringify(
  270. this.topadd)) + "&bottom=" + encodeURIComponent(JSON.stringify(this.bottomadd)) +
  271. '&leftname=' + this
  272. .leftname + "&rightname=" + this.rightname + "&container_id=" + this.container_id +
  273. "&unit_price=" + this.unit_price
  274. })
  275. }
  276. }
  277. }
  278. }
  279. </script>
  280. <style lang="scss" scoped>
  281. .topname {
  282. font-family: PingFangSC, PingFang SC;
  283. font-weight: 500;
  284. font-size: 30rpx;
  285. color: #222222;
  286. line-height: 42rpx;
  287. text-align: left;
  288. font-style: normal;
  289. }
  290. .topaddress {
  291. font-family: PingFangSC, PingFang SC;
  292. font-weight: 400;
  293. font-size: 26rpx;
  294. color: #777777;
  295. line-height: 36rpx;
  296. text-align: left;
  297. font-style: normal;
  298. }
  299. .pop {
  300. font-family: PingFangSC, PingFang SC;
  301. font-weight: 500;
  302. font-size: 36rpx;
  303. color: #333333;
  304. line-height: 50rpx;
  305. text-align: left;
  306. font-style: normal;
  307. padding: 32rpx 28rpx 0 0;
  308. box-sizing: border-box;
  309. }
  310. .sum {
  311. font-family: PingFangSC, PingFang SC;
  312. font-weight: 500;
  313. font-size: 24rpx;
  314. color: #222222;
  315. line-height: 34rpx;
  316. text-align: left;
  317. font-style: normal;
  318. }
  319. .deal {
  320. font-family: PingFangSC, PingFang SC;
  321. font-weight: 400;
  322. font-size: 20rpx;
  323. color: #666666;
  324. line-height: 28rpx;
  325. text-align: left;
  326. font-style: normal;
  327. }
  328. .tonext {
  329. width: 286rpx;
  330. height: 88rpx;
  331. background: #F83224;
  332. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  333. border-radius: 44rpx;
  334. font-family: PingFangSC, PingFang SC;
  335. font-weight: 500;
  336. font-size: 32rpx;
  337. color: #FFFFFF;
  338. line-height: 88rpx;
  339. text-align: center;
  340. font-style: normal;
  341. }
  342. .next {
  343. width: 750rpx;
  344. height: 166rpx;
  345. background: #FFFFFF;
  346. position: fixed;
  347. bottom: 0;
  348. left: 0;
  349. padding: 12rpx 24rpx;
  350. box-sizing: border-box;
  351. }
  352. .wup {
  353. width: 704rpx;
  354. height: 220rpx;
  355. background: #FFFFFF;
  356. border-radius: 16rpx;
  357. margin-top: 20rpx;
  358. padding: 0rpx 20rpx;
  359. box-sizing: border-box;
  360. }
  361. .info {
  362. height: 100rpx;
  363. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  364. .wupin {
  365. font-family: PingFangSC, PingFang SC;
  366. font-weight: 400;
  367. font-size: 28rpx;
  368. color: #333333;
  369. line-height: 40rpx;
  370. text-align: left;
  371. font-style: normal;
  372. }
  373. .change {
  374. font-family: PingFangSC, PingFang SC;
  375. font-weight: 400;
  376. font-size: 28rpx;
  377. color: #666666;
  378. line-height: 40rpx;
  379. text-align: left;
  380. font-style: normal;
  381. }
  382. .mast {
  383. width: 62rpx;
  384. height: 30rpx;
  385. border-radius: 16rpx;
  386. border: 1rpx solid #F83224;
  387. font-family: PingFangSC, PingFang SC;
  388. font-weight: 400;
  389. font-size: 20rpx;
  390. color: #FF1515;
  391. line-height: 30rpx;
  392. text-align: center;
  393. font-style: normal;
  394. margin-left: 12rpx;
  395. }
  396. }
  397. .mon {
  398. font-family: HarmonyOS_Sans_Medium;
  399. font-size: 20rpx;
  400. color: #F83224;
  401. line-height: 26rpx;
  402. text-align: left;
  403. font-style: normal;
  404. }
  405. .bigtitle {
  406. font-family: PingFangSC, PingFang SC;
  407. font-weight: 600;
  408. font-size: 28rpx;
  409. color: #222222;
  410. line-height: 40rpx;
  411. text-align: left;
  412. font-style: normal;
  413. }
  414. .timeb {
  415. font-family: PingFangSC, PingFang SC;
  416. font-weight: 400;
  417. font-size: 22rpx;
  418. color: #666666;
  419. line-height: 32rpx;
  420. text-align: left;
  421. font-style: normal;
  422. }
  423. .timea {
  424. font-family: PingFangSC, PingFang SC;
  425. font-weight: 400;
  426. font-size: 22rpx;
  427. color: #555555;
  428. line-height: 32rpx;
  429. text-align: left;
  430. font-style: normal;
  431. }
  432. .pinb {
  433. width: 148rpx;
  434. height: 64rpx;
  435. background: #FF1515;
  436. border-radius: 42rpx;
  437. font-family: PingFangSC, PingFang SC;
  438. font-weight: 500;
  439. font-size: 28rpx;
  440. color: #FFFFFF;
  441. line-height: 64rpx;
  442. text-align: center;
  443. font-style: normal;
  444. }
  445. .label {
  446. margin-top: 20rpx;
  447. width: 702rpx;
  448. height: 288rpx;
  449. background: #FFFFFF;
  450. border-radius: 16rpx;
  451. padding: 32rpx 20rpx;
  452. box-sizing: border-box;
  453. .left {
  454. width: 144rpx;
  455. height: 144rpx;
  456. background: #F5F5F5;
  457. border-radius: 8rpx;
  458. .bourn {
  459. font-family: PingFangSC, PingFang SC;
  460. font-weight: 400;
  461. font-size: 20rpx;
  462. color: #222222;
  463. line-height: 28rpx;
  464. text-align: left;
  465. font-style: normal;
  466. }
  467. .addres {
  468. font-family: PingFangSC, PingFang SC;
  469. font-weight: 500;
  470. font-size: 28rpx;
  471. color: #222222;
  472. line-height: 40rpx;
  473. text-align: left;
  474. font-style: normal;
  475. }
  476. }
  477. }
  478. .flexc {
  479. display: flex;
  480. flex-direction: column;
  481. justify-content: center;
  482. align-items: center;
  483. }
  484. .hai {
  485. font-family: PingFangSC, PingFang SC;
  486. font-weight: 600;
  487. font-size: 32rpx;
  488. color: #222222;
  489. line-height: 44rpx;
  490. text-align: left;
  491. font-style: normal;
  492. margin-right: 10rpx;
  493. }
  494. .more {
  495. font-family: PingFangSC, PingFang SC;
  496. font-weight: 400;
  497. font-size: 24rpx;
  498. color: #F83224;
  499. line-height: 34rpx;
  500. text-align: left;
  501. font-style: normal;
  502. }
  503. .parcel {
  504. width: 702rpx;
  505. height: 260rpx;
  506. background: #FFFFFF;
  507. border-radius: 16rpx;
  508. margin-top: 20rpx;
  509. padding: 24rpx;
  510. box-sizing: border-box;
  511. .myparcel {
  512. font-family: PingFangSC, PingFang SC;
  513. font-weight: 600;
  514. font-size: 28rpx;
  515. color: #222222;
  516. line-height: 40rpx;
  517. text-align: left;
  518. font-style: normal;
  519. }
  520. .add {
  521. width: 240rpx;
  522. height: 48rpx;
  523. background: rgba(248, 50, 36, 0.06);
  524. border-radius: 24rpx;
  525. .addtext {
  526. font-family: PingFangSC, PingFang SC;
  527. font-weight: 600;
  528. font-size: 20rpx;
  529. color: #000000;
  530. line-height: 28rpx;
  531. text-align: left;
  532. font-style: normal;
  533. }
  534. }
  535. }
  536. .address {
  537. width: 702rpx;
  538. // height: 776rpx;
  539. background: #FFFFFF;
  540. border-radius: 20rpx;
  541. padding: 48rpx 24rpx 36rpx;
  542. box-sizing: border-box;
  543. margin-top: 38rpx;
  544. .bottom {
  545. padding: 0 76rpx;
  546. box-sizing: border-box;
  547. margin-top: 48rpx;
  548. .friend {
  549. font-family: PingFangSC, PingFang SC;
  550. font-weight: 400;
  551. font-size: 28rpx;
  552. color: #555555;
  553. line-height: 40rpx;
  554. text-align: left;
  555. font-style: normal;
  556. margin-left: 12rpx;
  557. }
  558. }
  559. .mail {
  560. width: 646rpx;
  561. height: 84rpx;
  562. background: #F83224;
  563. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  564. border-radius: 44rpx;
  565. font-family: PingFangSC, PingFang SC;
  566. font-weight: 500;
  567. font-size: 32rpx;
  568. color: #FFFFFF;
  569. line-height: 84rpx;
  570. text-align: center;
  571. font-style: normal;
  572. }
  573. .left {
  574. height: 128rpx;
  575. .pople {
  576. font-family: PingFangSC, PingFang SC;
  577. font-weight: 500;
  578. font-size: 30rpx;
  579. color: #222222;
  580. line-height: 42rpx;
  581. text-align: left;
  582. font-style: normal;
  583. }
  584. .jiadd {
  585. font-family: PingFangSC, PingFang SC;
  586. font-weight: 400;
  587. font-size: 26rpx;
  588. color: #777777;
  589. line-height: 36rpx;
  590. text-align: left;
  591. font-style: normal;
  592. }
  593. .right {
  594. font-family: PingFangSC, PingFang SC;
  595. font-weight: 500;
  596. font-size: 26rpx;
  597. color: #222222;
  598. line-height: 36rpx;
  599. text-align: left;
  600. font-style: normal;
  601. margin-left: 18rpx;
  602. }
  603. }
  604. }
  605. ::v-deep .u-navbar__content.data-v-1194bf80 {
  606. background-color: rgba(0, 0, 0, 0) !important;
  607. }
  608. ::v-deep .u-status-bar.data-v-13f16680 {
  609. background-color: rgba(0, 0, 0, 0) !important;
  610. }
  611. ::v-deep .u-subsection--button.data-v-b14d3440 {
  612. /* padding: 6rpx 34rpx !important; */
  613. border-radius: 64rpx !important;
  614. }
  615. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  616. border-radius: 32rpx !important;
  617. }
  618. </style>