kj-express.vue 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174
  1. <template>
  2. <!-- 商城 -->
  3. <scroll-view
  4. class=""
  5. scroll-y="true"
  6. style="height: calc(100vh - 300rpx); padding: 0 24rpx"
  7. >
  8. <view style="position: relative; padding-bottom: 20rpx">
  9. <!-- 自定义导航栏 -->
  10. <image
  11. src="../../static/images/index/back.png"
  12. style="
  13. width: 750rpx;
  14. height: 1200rpx;
  15. position: absolute;
  16. top: 0;
  17. z-index: -1;
  18. left: -24rpx;
  19. "
  20. mode=""
  21. >
  22. </image>
  23. <!-- 地址 -->
  24. <view class="address">
  25. <view class="left u-flex" style="display: flex">
  26. <view
  27. class="u-row-between left"
  28. style="display: flex; flex-direction: column"
  29. >
  30. <image
  31. src="../../static/express/ji.png"
  32. style="width: 40rpx; height: 40rpx"
  33. mode=""
  34. ></image>
  35. <image
  36. @click="changeadd"
  37. src="../../static/express/change.png"
  38. style="width: 40rpx; height: 40rpx"
  39. mode=""
  40. >
  41. </image>
  42. </view>
  43. <view
  44. class="u-row-between left"
  45. style="
  46. flex: 1;
  47. margin-left: 28rpx;
  48. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  49. display: flex;
  50. "
  51. >
  52. <view
  53. v-if="JSON.stringify(topadd) == '{}'"
  54. class="u-row-between"
  55. style=""
  56. @click="send"
  57. >
  58. <view class="pople">{{ i18n.sender }}</view>
  59. <view class="jiadd" style="margin-top: 14rpx">{{
  60. i18n.informat
  61. }}</view>
  62. </view>
  63. <view v-else class="u-row-between" style="" @click="send">
  64. <view class="">
  65. <text class="topname">{{ topadd.name }}</text>
  66. <text class="topaddress" style="margin-left: 8rpx">{{
  67. replacePhoneToStar(topadd.mobile)
  68. }}</text>
  69. </view>
  70. <view class="topaddress" style="margin-top: 14rpx">{{
  71. topadd.full_address
  72. }}</view>
  73. </view>
  74. <view class="u-flex" @click.stop="addbook(1)">
  75. <view class="" style="color: rgba(151, 151, 151, 1)">|</view>
  76. <text class="right">{{ i18n.addressbook }}</text>
  77. </view>
  78. </view>
  79. </view>
  80. <view
  81. class="left u-flex"
  82. style="
  83. display: flex;
  84. margin-top: 26rpx;
  85. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  86. "
  87. >
  88. <view
  89. class="u-row-between left"
  90. style="display: flex; flex-direction: column"
  91. >
  92. <image
  93. src="../../static/express/shou.png"
  94. style="width: 40rpx; height: 40rpx"
  95. mode=""
  96. ></image>
  97. <!-- <image src="../../static/express/change.png" style='width: 40rpx;;height:40rpx ;' mode=""> -->
  98. <!-- </image> -->
  99. </view>
  100. <view
  101. class="u-row-between left"
  102. style="flex: 1; margin-left: 28rpx; display: flex"
  103. >
  104. <view
  105. v-if="JSON.stringify(bottomadd) == '{}'"
  106. class="u-row-between"
  107. style=""
  108. @click="recipirnt"
  109. >
  110. <view class="pople">{{ i18n.recipient }}</view>
  111. <view class="jiadd" style="margin-top: 14rpx">{{
  112. i18n.informate
  113. }}</view>
  114. </view>
  115. <view v-else class="u-row-between" style="" @click="recipirnt">
  116. <view class="">
  117. <text class="topname">{{ bottomadd.name }}</text>
  118. <text class="topaddress" style="margin-left: 8rpx">{{
  119. replacePhoneToStar(bottomadd.mobile)
  120. }}</text>
  121. </view>
  122. <view class="topaddress" style="margin-top: 14rpx">{{
  123. bottomadd.full_address
  124. }}</view>
  125. </view>
  126. <view class="u-flex" @click.stop="addbook(0)">
  127. <view class="" style="color: rgba(151, 151, 151, 1)">|</view>
  128. <text class="right">{{ i18n.addressbook }}</text>
  129. </view>
  130. </view>
  131. </view>
  132. <!-- 物品信息 -->
  133. <view class="info u-flex u-row-between">
  134. <view class="u-flex">
  135. <text class="wupin">{{ i18n.item }}</text>
  136. <view class="mast">{{ i18n.required }}</view>
  137. </view>
  138. <view
  139. v-if="JSON.stringify(goodinfo) === '{}'"
  140. class="u-flex"
  141. @click="goods"
  142. >
  143. <view class="change">{{ i18n.selection }}</view>
  144. <image
  145. src="../../static/express/next1.png"
  146. style="width: 28rpx; height: 28rpx; margin-left: 6rpx"
  147. mode=""
  148. ></image>
  149. </view>
  150. <view v-else class="goodname" @click="goods">
  151. {{ goodinfo.goodname }},{{ goodinfo.weight }}kg
  152. </view>
  153. </view>
  154. <!-- 跨境物流 -->
  155. <view class="info u-flex u-row-between">
  156. <view class="u-flex">
  157. <text class="wupin">{{ i18n.flow }}</text>
  158. </view>
  159. <view class="u-flex" @click="changewu">
  160. <!-- <text class="change" style="color: rgba(248, 50, 36, 1);">{{i18n.selection}}</text> -->
  161. <text class="change" style="color: rgba(248, 50, 36, 1)">{{
  162. leftname ? leftname + " | " + rightname : i18n.selection
  163. }}</text>
  164. <image
  165. v-if="leftname == ''"
  166. src="../../static/express/next1.png"
  167. style="width: 28rpx; height: 28rpx; margin-left: 6rpx"
  168. mode=""
  169. ></image>
  170. </view>
  171. </view>
  172. <!-- 去寄件 -->
  173. <view class="" style="margin-top: 34rpx">
  174. <view class="mail" @click="todev">
  175. {{ i18n.mail }}
  176. </view>
  177. </view>
  178. <view class="bottom u-flex u-row-between">
  179. <button
  180. style="
  181. background-color: transparent;
  182. padding-left: 0 !important;
  183. padding-right: 0 !important;
  184. margin: 0 !important;
  185. "
  186. open-type="share"
  187. class="u-flex"
  188. >
  189. <image
  190. src="../../static/express/share.png"
  191. style="width: 36rpx; height: 36rpx"
  192. mode=""
  193. ></image>
  194. <text class="friend">{{ i18n.share }}</text>
  195. </button>
  196. <view class="friend">|</view>
  197. <view class="u-flex" @click="counter">
  198. <image
  199. src="/static/images/index/compile.png"
  200. style="width: 36rpx; height: 36rpx"
  201. mode=""
  202. >
  203. </image>
  204. <text class="friend">{{ i18n.compute }}</text>
  205. </view>
  206. </view>
  207. </view>
  208. <!-- 我的包裹 -->
  209. <view class="parcel">
  210. <view class="u-flex u-row-between">
  211. <view class="myparcel">
  212. <text>{{ i18n.mine }}</text>
  213. <text style="color: rgba(248, 50, 36, 1)">{{ i18n.parcel }}</text>
  214. </view>
  215. <view class="add u-flex">
  216. <image
  217. src="../../static/express/add.png"
  218. mode=""
  219. style="width: 44rpx; height: 44rpx"
  220. ></image>
  221. <text class="addtext" @click="toparcel">{{ i18n.addsign }}</text>
  222. </view>
  223. </view>
  224. <view class="u-flex u-row-around" style="margin-top: 44rpx">
  225. <view class="flexc" @click="pack('to_transit')">
  226. <view
  227. class=""
  228. style="position: relative; width: 68rpx; height: 68rpx"
  229. >
  230. <u-badge
  231. :absolute="true"
  232. :offset="[0, -15]"
  233. :type="type"
  234. max="99"
  235. :value="transit"
  236. ></u-badge>
  237. <image
  238. src="/static/express/address.png"
  239. style="width: 68rpx; height: 68rpx"
  240. mode=""
  241. >
  242. </image>
  243. </view>
  244. <text style="margin-top: 16rpx" class="bao">{{
  245. i18n.deliver
  246. }}</text>
  247. </view>
  248. <view
  249. class="flexc"
  250. style="position: relative"
  251. @click="pack('transit_receipt')"
  252. >
  253. <view
  254. class=""
  255. style="position: relative; width: 68rpx; height: 68rpx"
  256. >
  257. <u-badge
  258. :absolute="true"
  259. :offset="[0, -15]"
  260. :type="type"
  261. max="99"
  262. :value="receipt"
  263. ></u-badge>
  264. <image
  265. src="/static/express/sign.png"
  266. style="width: 68rpx; height: 68rpx"
  267. mode=""
  268. ></image>
  269. </view>
  270. <text style="margin-top: 16rpx" class="bao">{{ i18n.Sign }}</text>
  271. </view>
  272. <view
  273. class="flexc"
  274. style="position: relative"
  275. @click="pack('to_overseas')"
  276. >
  277. <view
  278. class=""
  279. style="position: relative; width: 68rpx; height: 68rpx"
  280. >
  281. <u-badge
  282. :absolute="true"
  283. :offset="[0, -15]"
  284. :type="type"
  285. max="99"
  286. :value="overseas"
  287. ></u-badge>
  288. <image
  289. src="../../static/express/send.png"
  290. style="width: 68rpx; height: 68rpx"
  291. mode=""
  292. ></image>
  293. </view>
  294. <text style="margin-top: 16rpx" class="bao">{{
  295. i18n.overseas
  296. }}</text>
  297. </view>
  298. </view>
  299. </view>
  300. <!-- 拼包 -->
  301. <view
  302. class="u-flex u-row-between"
  303. style="margin-top: 32rpx; width: 702rpx"
  304. >
  305. <view class="u-flex">
  306. <text class="hai">{{ i18n.parceling }}</text>
  307. <image
  308. v-if="language == 'zh-CN'"
  309. style="width: 180rpx; height: 32rpx"
  310. src="/static/express/label.png"
  311. mode=""
  312. ></image>
  313. <image
  314. v-if="language == 'en-US'"
  315. style="width: 300rpx; height: 32rpx"
  316. src="/static/express/label1.png"
  317. mode=""
  318. ></image>
  319. <image
  320. v-if="language == 'es-ES'"
  321. style="width: 334rpx; height: 32rpx"
  322. src="/static/express/label2.png"
  323. mode=""
  324. ></image>
  325. <image
  326. v-if="language == 'it-IT'"
  327. style="width: 366rpx; height: 32rpx"
  328. src="/static/express/label3.png"
  329. mode=""
  330. ></image>
  331. </view>
  332. <view class="u-flex">
  333. <text class="more" @click="more">{{ i18n.more }}</text>
  334. <image
  335. src="../../static/express/next2.png"
  336. style="width: 30rpx; height: 30rpx"
  337. mode=""
  338. ></image>
  339. </view>
  340. </view>
  341. <!-- 拼包数据 -->
  342. <view class="label" v-for="(item, idx) in expressList" :key="idx">
  343. <view class="" style="display: flex">
  344. <view class="left flexc">
  345. <text class="bourn">{{ i18n.destination }}</text>
  346. <view class="addres">{{ item.containerBase.country_name }}</view>
  347. <view class="addres">{{ item.containerBase.province_name }}</view>
  348. </view>
  349. <view class="" style="flex: 1; margin-left: 20rpx">
  350. <view class="u-flex u-row-between">
  351. <view class="">
  352. <text class="bigtitle" v-if="item.type == 'normal'">{{
  353. i18n.Ordinary
  354. }}</text>
  355. <text class="bigtitle" v-else>{{ i18n.Special }}</text>
  356. <text style="margin: 0 8rpx">|</text>
  357. <text v-if="language == 'zh-CN'" class="bigtitle">{{
  358. item.transportType.name_cn
  359. }}</text>
  360. <text v-if="language == 'en-US'" class="bigtitle">{{
  361. item.transportType.name_en
  362. }}</text>
  363. <text v-if="language == 'es-ES'" class="bigtitle">{{
  364. item.transportType.name_es
  365. }}</text>
  366. <text v-if="language == 'it-IT'" class="bigtitle">{{
  367. item.transportType.name_ita
  368. }}</text>
  369. </view>
  370. <view class="mon">
  371. <text class="timeb">{{ i18n.price }}</text>
  372. <text>¥</text>
  373. <text v-if="item.price" style="font-size: 32rpx">{{
  374. item.price.slice(0, -3)
  375. }}</text>
  376. <text v-if="item.price">{{ item.price.slice(-3) }}</text>
  377. </view>
  378. </view>
  379. <view class="" style="margin-top: 34rpx">
  380. <u-line-progress
  381. activeColor="rgba(255, 21, 21, 1)"
  382. :percentage="item.progress"
  383. height="6"
  384. :showText="false"
  385. ></u-line-progress>
  386. </view>
  387. <view class="u-flex u-row-between" style="margin-top: 20rpx">
  388. <view class="u-flex">
  389. <view class="">
  390. <text class="timeb">{{ i18n.already }} </text>
  391. <text class="timeb" style="color: rgba(255, 21, 21, 1)"
  392. >{{ item.used_weight }}kg</text
  393. >
  394. </view>
  395. <text style="margin: 0 8rpx">|</text>
  396. <view class="">
  397. <text class="timeb">{{ i18n.residue }} </text>
  398. <text class="timeb" style="color: rgba(255, 21, 21, 1)"
  399. >{{ item.residual_weight }}kg</text
  400. >
  401. </view>
  402. </view>
  403. <view class="">
  404. <text class="timeb">{{ i18n.plan }}{{ item.progress }}%</text>
  405. </view>
  406. </view>
  407. </view>
  408. </view>
  409. <view class="u-flex u-row-between" style="margin-top: 32rpx">
  410. <text class="timea"
  411. >{{ i18n.start }}:{{ item.begin_date }}/{{ i18n.cut }}:{{
  412. item.end_date
  413. }}</text
  414. >
  415. <view class="pinb" @click="toaccount(item)">{{
  416. i18n.goparceling
  417. }}</view>
  418. </view>
  419. </view>
  420. </view>
  421. <u-popup round="28" :show="logshow" @close="close">
  422. <view class="pop">
  423. <kj-flow
  424. :language="language"
  425. :goodstype="goodinfo.goodtype"
  426. ref="child"
  427. :province_id="province_id"
  428. @success="success"
  429. @close="close()"
  430. :leftchangea="leftchange"
  431. :rightchangea="rightchange"
  432. :typeida="typeid"
  433. :country_id='country_id'
  434. ></kj-flow>
  435. </view>
  436. </u-popup>
  437. <!-- <u-button @click="show = true">打开</u-button> -->
  438. <!-- <view class="" style="height: 160rpx;"></view> -->
  439. </scroll-view>
  440. </template>
  441. <script>
  442. import { conn } from "@/utils/WebIM";
  443. export default {
  444. data() {
  445. return {
  446. //顶部分段器
  447. list: [],
  448. current: 0,
  449. type: "error",
  450. percentage: 50, //进度条
  451. logshow: false, //物流选择
  452. status_collection: "", //我的包裹选择值
  453. transit: 0, //发往中转点
  454. receipt: 0, //中转已签收
  455. overseas: 0, //正发往海外
  456. topadd: {}, //新建寄件人
  457. bottomadd: {}, //新建收件人
  458. province_id: "",
  459. country_id:'',
  460. leftname: "",
  461. rightname: "",
  462. container_id: "", //货柜列表
  463. language: "zh-CN",
  464. goodinfo: {}, //物品信息
  465. unit_price: "",
  466. expressList: [],
  467. leftchange: "",
  468. rightchange: "",
  469. typeid: "",
  470. unReadCount: 0,
  471. };
  472. },
  473. created(options) {
  474. this.list = [this.i18n.border, this.i18n.shop];
  475. // if (options.current) {
  476. // this.current = options.current
  477. // }
  478. this.topadd = {}; //新建寄件人
  479. this.bottomadd = {}; //新建收件人
  480. },
  481. mounted() {
  482. this.list[0] = this.i18n.border;
  483. this.list[1] = this.i18n.shop;
  484. // uni.setNavigationBarTitle({
  485. // title: this.i18n.setup
  486. // })
  487. this.express(); //获取包裹数量
  488. if (uni.getStorageSync("language") != "") {
  489. this.language = uni.getStorageSync("language");
  490. }
  491. this.getexpress();
  492. this.getlist();
  493. },
  494. computed: {
  495. i18n() {
  496. return this.$t("index");
  497. },
  498. },
  499. methods: {
  500. getlist() {
  501. this.unReadCount = 0;
  502. conn
  503. .getServerConversations({
  504. pageSize: 50,
  505. cursor: "",
  506. })
  507. .then((res) => {
  508. console.log(res);
  509. res.data.conversations.forEach((item) => {
  510. this.unReadCount += item.unReadCount;
  511. });
  512. });
  513. },
  514. onShareAppMessage(res) {
  515. if (res.from === "button") {
  516. // 来自页面内分享按钮
  517. console.log(res.target);
  518. }
  519. return {
  520. title: this.i18n.border,
  521. path: "/pages/express/express",
  522. };
  523. },
  524. callphone() {
  525. uni.$u.http
  526. .get("/api/config", {
  527. params: {
  528. module: "basic",
  529. },
  530. })
  531. .then((res) => {
  532. console.log(res);
  533. uni.makePhoneCall({
  534. phoneNumber: res.service_mobile,
  535. });
  536. })
  537. .catch(() => {});
  538. },
  539. //价格计算
  540. calculate() {
  541. uni.$u.http
  542. .get("/api/express-order/calculate", {
  543. params: {
  544. container_id: this.container_id, // 是 String 货柜ID
  545. weight: this.goodinfo.weight, //是 String 重量(kg)
  546. length: this.goodinfo.length, //是 String 长(m)
  547. width: this.goodinfo.width, //是 String 宽(m)
  548. height: this.goodinfo.height, //是 String 高(m)
  549. type: this.goodinfo.goodtype, //是 String 商品类型: normal.普通商品,
  550. },
  551. })
  552. .then((res) => {
  553. console.log(res);
  554. uni.navigateTo({
  555. url:
  556. "/pageB/delivery?goodinfo=" +
  557. encodeURIComponent(JSON.stringify(this.goodinfo)) +
  558. "&topadd=" +
  559. encodeURIComponent(JSON.stringify(this.topadd)) +
  560. "&bottom=" +
  561. encodeURIComponent(JSON.stringify(this.bottomadd)) +
  562. "&leftname=" +
  563. this.leftname +
  564. "&rightname=" +
  565. this.rightname +
  566. "&container_id=" +
  567. this.container_id +
  568. "&unit_price=" +
  569. this.unit_price +
  570. "&all=" +
  571. res,
  572. });
  573. })
  574. .catch(() => {});
  575. },
  576. //拼包列表
  577. getexpress() {
  578. uni.$u.http
  579. .get("/api/express-group-package", {
  580. params: {
  581. is_page: 0,
  582. page: 1,
  583. limit: 3,
  584. transport_type_id: "",
  585. container_base_id: "",
  586. type: "",
  587. },
  588. })
  589. .then((res) => {
  590. this.expressList = res;
  591. })
  592. .catch(() => {});
  593. },
  594. //跨境物流选择
  595. success(msg) {
  596. this.logshow = false;
  597. this.leftname = msg.leftname;
  598. this.container_id = msg.dateid;
  599. this.rightname = msg.rightname;
  600. this.unit_price = msg.unit_price;
  601. this.leftchange = msg.leftchange;
  602. this.rightchange = msg.rightchange;
  603. this.typeid = msg.typeid;
  604. },
  605. //物流选择
  606. changewu() {
  607. var that = this;
  608. if (this.province_id) {
  609. this.logshow = true;
  610. setTimeout(() => {
  611. console.log("2222222", this.$refs.child);
  612. that.$refs.child.transport();
  613. }, 800);
  614. } else {
  615. this.$u.toast(this.i18n.selectcity);
  616. }
  617. },
  618. //改变地址
  619. changeadd() {
  620. var a = {};
  621. a = this.topadd;
  622. this.topadd = this.bottomadd;
  623. this.bottomadd = a;
  624. this.province_id = this.bottomadd.province_id;
  625. this.country_id = this.bottomadd.country_id;
  626. },
  627. //正则匹配手机号
  628. replacePhoneToStar: function (phone) {
  629. if (phone) {
  630. return phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2");
  631. }
  632. },
  633. //地址薄
  634. addbook(index) {
  635. var that = this;
  636. uni.navigateTo({
  637. url: "/pageC/addressManagement/addressManagement?tabs=" + index,
  638. events: {
  639. getadd(res) {
  640. if (index == 1) {
  641. that.topadd = res;
  642. console.log("topadd", that.topadd);
  643. } else {
  644. that.bottomadd = res;
  645. console.log("bottom", that.bottomadd);
  646. that.province_id = that.bottomadd.province_id;
  647. that.country_id = that.bottomadd.country_id;
  648. }
  649. },
  650. },
  651. });
  652. },
  653. //我的包裹
  654. express() {
  655. uni.$u.http
  656. .get("/api/express-order/status-count", {})
  657. .then((res) => {
  658. console.log(res);
  659. this.overseas = res.to_overseas;
  660. this.receipt = res.transit_receipt;
  661. this.transit = res.to_transit;
  662. })
  663. .catch(() => {});
  664. },
  665. todev() {
  666. if (JSON.stringify(this.topadd) === "{}") {
  667. this.$u.toast("请填写寄件人地址");
  668. } else if (JSON.stringify(this.bottomadd) === "{}") {
  669. this.$u.toast("请填写收件人地址");
  670. } else if (JSON.stringify(this.goodinfo) === "{}") {
  671. this.$u.toast("请填写物品信息");
  672. } else if (this.leftname == "") {
  673. this.$u.toast("请选择物流方式");
  674. } else {
  675. this.calculate();
  676. }
  677. },
  678. count() {
  679. uni.navigateTo({
  680. url: "/pageB/account",
  681. });
  682. },
  683. pack(index) {
  684. uni.navigateTo({
  685. // url: '/pageB/myPackage?index=' + index
  686. url: "/pageC/myPackage/myPackage?type=" + index,
  687. });
  688. },
  689. more() {
  690. uni.navigateTo({
  691. url: "/pageB/list/list",
  692. });
  693. },
  694. //拼包快递
  695. toaccount(info) {
  696. uni.navigateTo({
  697. url:
  698. "/pageB/ParcelExpress?expressinfo=" +
  699. encodeURIComponent(JSON.stringify(info)) +
  700. "&type=" +
  701. "pin",
  702. });
  703. },
  704. //物流计算器
  705. counter() {
  706. uni.navigateTo({
  707. url: "/pageA/counter",
  708. });
  709. },
  710. //消息
  711. tochat() {
  712. uni.navigateTo({
  713. url: "/pageA/chat/news",
  714. });
  715. },
  716. //物品信息
  717. goods() {
  718. var that = this;
  719. if (JSON.stringify(this.goodinfo) == "{}") {
  720. uni.navigateTo({
  721. url: "/pageB/goods",
  722. events: {
  723. goodinfo: function (res) {
  724. console.log("goodinfo", res);
  725. that.goodinfo = res;
  726. },
  727. },
  728. });
  729. } else {
  730. uni.navigateTo({
  731. url:
  732. "/pageB/goods?goodinfo=" +
  733. encodeURIComponent(JSON.stringify(this.goodinfo)),
  734. events: {
  735. goodinfo: function (res) {
  736. that.goodinfo = res;
  737. console.log(res);
  738. },
  739. },
  740. });
  741. }
  742. },
  743. //寄件人信息
  744. send() {
  745. var that = this;
  746. if (JSON.stringify(that.topadd) == "{}") {
  747. uni.navigateTo({
  748. url: "/pageC/addEditAddress/addEditAddress",
  749. events: {
  750. topadd: function (res) {
  751. // console.log(res);
  752. that.topadd = res;
  753. },
  754. },
  755. });
  756. } else {
  757. var that = this;
  758. uni.navigateTo({
  759. url: "/pageC/addEditAddress/addEditAddress?id=" + that.topadd.id,
  760. events: {
  761. topadd: function (res) {
  762. // console.log(res);
  763. that.topadd = res;
  764. },
  765. },
  766. });
  767. }
  768. },
  769. recipirnt() {
  770. var that = this;
  771. if (JSON.stringify(that.bottomadd) == "{}") {
  772. uni.navigateTo({
  773. url: "/pageB/recipientinfo",
  774. events: {
  775. bottomadd: function (res) {
  776. console.log(res);
  777. that.bottomadd = res;
  778. that.province_id = res.province_id;
  779. that.country_id = res.country_id;
  780. },
  781. },
  782. });
  783. } else {
  784. uni.navigateTo({
  785. url: "/pageB/recipientinfo?id=" + that.bottomadd.id,
  786. events: {
  787. bottomadd: function (res) {
  788. console.log(res);
  789. that.bottomadd = res;
  790. that.province_id = res.province_id;
  791. that.country_id = res.country_id;
  792. },
  793. },
  794. });
  795. }
  796. },
  797. close() {
  798. this.logshow = false;
  799. },
  800. //分段器切换
  801. sectionChange(index) {
  802. this.current = index;
  803. console.log(index);
  804. if (this.current == 1) {
  805. uni.switchTab({
  806. url: "/pages/index/index?current=1",
  807. });
  808. this.current = 0;
  809. }
  810. },
  811. toparcel() {
  812. uni.navigateTo({
  813. url: "/pageB/parcel",
  814. });
  815. },
  816. },
  817. };
  818. </script>
  819. <style lang="scss" scoped>
  820. button {
  821. border: 0rpx solid rgba(0, 0, 0, 1) !important;
  822. }
  823. page {
  824. background-color: rgba(0, 0, 0, 0);
  825. }
  826. .bao {
  827. font-family: PingFangSC, PingFang SC;
  828. font-weight: 400;
  829. font-size: 26rpx;
  830. color: #222222;
  831. line-height: 36rpx;
  832. text-align: center;
  833. font-style: normal;
  834. }
  835. .goodname {
  836. font-family: SFPro, SFPro;
  837. font-weight: 400;
  838. font-size: 28rpx;
  839. color: #222222;
  840. line-height: 32rpx;
  841. text-align: left;
  842. font-style: normal;
  843. }
  844. .topname {
  845. font-family: PingFangSC, PingFang SC;
  846. font-weight: 500;
  847. font-size: 30rpx;
  848. color: #222222;
  849. line-height: 42rpx;
  850. text-align: left;
  851. font-style: normal;
  852. }
  853. .topaddress {
  854. font-family: PingFangSC, PingFang SC;
  855. font-weight: 400;
  856. font-size: 26rpx;
  857. color: #777777;
  858. line-height: 36rpx;
  859. text-align: left;
  860. font-style: normal;
  861. }
  862. .pop {
  863. font-family: PingFangSC, PingFang SC;
  864. font-weight: 500;
  865. font-size: 36rpx;
  866. color: #333333;
  867. line-height: 50rpx;
  868. text-align: left;
  869. font-style: normal;
  870. padding: 32rpx 28rpx 0 0;
  871. box-sizing: border-box;
  872. }
  873. .mon {
  874. font-family: HarmonyOS_Sans_Medium;
  875. font-size: 20rpx;
  876. color: #f83224;
  877. line-height: 26rpx;
  878. text-align: left;
  879. font-style: normal;
  880. font-weight: 600;
  881. }
  882. .bigtitle {
  883. font-family: PingFangSC, PingFang SC;
  884. font-weight: 600;
  885. font-size: 28rpx;
  886. color: #222222;
  887. line-height: 40rpx;
  888. text-align: left;
  889. font-style: normal;
  890. }
  891. .timeb {
  892. font-family: PingFangSC, PingFang SC;
  893. font-weight: 400;
  894. font-size: 22rpx;
  895. color: #666666;
  896. line-height: 32rpx;
  897. text-align: left;
  898. font-style: normal;
  899. }
  900. .timea {
  901. font-family: PingFangSC, PingFang SC;
  902. font-weight: 400;
  903. font-size: 22rpx;
  904. color: #555555;
  905. line-height: 32rpx;
  906. text-align: left;
  907. font-style: normal;
  908. }
  909. .pinb {
  910. width: 148rpx;
  911. height: 64rpx;
  912. background: #ff1515;
  913. border-radius: 42rpx;
  914. font-family: PingFangSC, PingFang SC;
  915. font-weight: 500;
  916. font-size: 28rpx;
  917. color: #ffffff;
  918. line-height: 64rpx;
  919. text-align: center;
  920. font-style: normal;
  921. }
  922. .label {
  923. margin-top: 20rpx;
  924. width: 702rpx;
  925. // height: 288rpx;
  926. background: #ffffff;
  927. border-radius: 16rpx;
  928. padding: 32rpx 20rpx;
  929. box-sizing: border-box;
  930. .left {
  931. width: 144rpx;
  932. height: 144rpx;
  933. background: #f5f5f5;
  934. border-radius: 8rpx;
  935. .bourn {
  936. font-family: PingFangSC, PingFang SC;
  937. font-weight: 400;
  938. font-size: 20rpx;
  939. color: #222222;
  940. line-height: 28rpx;
  941. text-align: left;
  942. font-style: normal;
  943. }
  944. .addres {
  945. font-family: PingFangSC, PingFang SC;
  946. font-weight: 500;
  947. font-size: 28rpx;
  948. color: #222222;
  949. line-height: 40rpx;
  950. text-align: left;
  951. font-style: normal;
  952. }
  953. }
  954. }
  955. .flexc {
  956. display: flex;
  957. flex-direction: column;
  958. justify-content: center;
  959. align-items: center;
  960. }
  961. .hai {
  962. font-family: PingFangSC, PingFang SC;
  963. font-weight: 600;
  964. font-size: 32rpx;
  965. color: #222222;
  966. line-height: 44rpx;
  967. text-align: left;
  968. font-style: normal;
  969. margin-right: 10rpx;
  970. }
  971. .more {
  972. font-family: PingFangSC, PingFang SC;
  973. font-weight: 400;
  974. font-size: 24rpx;
  975. color: #f83224;
  976. line-height: 34rpx;
  977. text-align: left;
  978. font-style: normal;
  979. }
  980. .parcel {
  981. width: 702rpx;
  982. // height: 260rpx;
  983. background: #ffffff;
  984. border-radius: 16rpx;
  985. margin-top: 20rpx;
  986. padding: 24rpx;
  987. box-sizing: border-box;
  988. .myparcel {
  989. font-family: PingFangSC, PingFang SC;
  990. font-weight: 600;
  991. font-size: 28rpx;
  992. color: #222222;
  993. line-height: 40rpx;
  994. text-align: left;
  995. font-style: normal;
  996. }
  997. .add {
  998. // width: 240rpx;
  999. height: 48rpx;
  1000. background: rgba(248, 50, 36, 0.06);
  1001. border-radius: 24rpx;
  1002. .addtext {
  1003. font-family: PingFangSC, PingFang SC;
  1004. font-weight: 600;
  1005. font-size: 20rpx;
  1006. color: #000000;
  1007. line-height: 28rpx;
  1008. text-align: left;
  1009. font-style: normal;
  1010. }
  1011. }
  1012. }
  1013. .address {
  1014. width: 702rpx;
  1015. // height: 776rpx;
  1016. background: #ffffff;
  1017. border-radius: 20rpx;
  1018. padding: 48rpx 24rpx 36rpx;
  1019. box-sizing: border-box;
  1020. margin-top: 38rpx;
  1021. .bottom {
  1022. padding: 0 76rpx;
  1023. box-sizing: border-box;
  1024. margin-top: 48rpx;
  1025. .friend {
  1026. font-family: PingFangSC, PingFang SC;
  1027. font-weight: 400;
  1028. font-size: 28rpx;
  1029. color: #555555;
  1030. line-height: 40rpx;
  1031. text-align: left;
  1032. font-style: normal;
  1033. margin-left: 12rpx;
  1034. }
  1035. }
  1036. .mail {
  1037. width: 646rpx;
  1038. height: 84rpx;
  1039. background: #f83224;
  1040. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  1041. border-radius: 44rpx;
  1042. font-family: PingFangSC, PingFang SC;
  1043. font-weight: 500;
  1044. font-size: 32rpx;
  1045. color: #ffffff;
  1046. line-height: 84rpx;
  1047. text-align: center;
  1048. font-style: normal;
  1049. }
  1050. .info {
  1051. height: 100rpx;
  1052. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  1053. .wupin {
  1054. font-family: PingFangSC, PingFang SC;
  1055. font-weight: 400;
  1056. font-size: 28rpx;
  1057. color: #333333;
  1058. line-height: 40rpx;
  1059. text-align: left;
  1060. font-style: normal;
  1061. }
  1062. .change {
  1063. font-family: PingFangSC, PingFang SC;
  1064. font-weight: 400;
  1065. font-size: 28rpx;
  1066. color: #666666;
  1067. line-height: 40rpx;
  1068. text-align: left;
  1069. font-style: normal;
  1070. }
  1071. .mast {
  1072. // width: 62rpx;
  1073. height: 30rpx;
  1074. border-radius: 16rpx;
  1075. border: 1rpx solid #f83224;
  1076. font-family: PingFangSC, PingFang SC;
  1077. font-weight: 400;
  1078. font-size: 20rpx;
  1079. color: #ff1515;
  1080. line-height: 30rpx;
  1081. text-align: center;
  1082. font-style: normal;
  1083. margin-left: 12rpx;
  1084. padding: 0 4rpx;
  1085. box-sizing: border-box;
  1086. }
  1087. }
  1088. .left {
  1089. height: 128rpx;
  1090. .pople {
  1091. font-family: PingFangSC, PingFang SC;
  1092. font-weight: 500;
  1093. font-size: 30rpx;
  1094. color: #222222;
  1095. line-height: 42rpx;
  1096. text-align: left;
  1097. font-style: normal;
  1098. }
  1099. .jiadd {
  1100. font-family: PingFangSC, PingFang SC;
  1101. font-weight: 400;
  1102. font-size: 26rpx;
  1103. color: #777777;
  1104. line-height: 36rpx;
  1105. text-align: left;
  1106. font-style: normal;
  1107. }
  1108. .right {
  1109. font-family: PingFangSC, PingFang SC;
  1110. font-weight: 600;
  1111. font-size: 26rpx;
  1112. color: #222222;
  1113. line-height: 36rpx;
  1114. text-align: left;
  1115. font-style: normal;
  1116. margin-left: 18rpx;
  1117. }
  1118. }
  1119. }
  1120. // ::v-deep .u-navbar__content.data-v-1194bf80 {
  1121. // background-color: rgba(0, 0, 0, 0) !important;
  1122. // }
  1123. // ::v-deep .u-status-bar.data-v-13f16680 {
  1124. // background-color: rgba(0, 0, 0, 0) !important;
  1125. // }
  1126. ::v-deep .u-subsection--button.data-v-b14d3440 {
  1127. /* padding: 6rpx 34rpx !important; */
  1128. border-radius: 64rpx !important;
  1129. }
  1130. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  1131. border-radius: 32rpx !important;
  1132. }
  1133. </style>