kj-express.vue 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181
  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. :weight = 'goodinfo.weight'
  425. :length = 'goodinfo.length'
  426. :width =' goodinfo.width'
  427. :height ='goodinfo.height'
  428. :language="language"
  429. :goodstype="goodinfo.goodtype"
  430. ref="child"
  431. :province_id="province_id"
  432. @success="success"
  433. @close="close()"
  434. :leftchangea="leftchange"
  435. :rightchangea="rightchange"
  436. :typeida="typeid"
  437. :country_id='country_id'
  438. ></kj-flow>
  439. </view>
  440. </u-popup>
  441. <!-- <u-button @click="show = true">打开</u-button> -->
  442. <!-- <view class="" style="height: 160rpx;"></view> -->
  443. </scroll-view>
  444. </template>
  445. <script>
  446. import { conn } from "@/utils/WebIM";
  447. export default {
  448. props:{
  449. language:''
  450. },
  451. data() {
  452. return {
  453. //顶部分段器
  454. list: [],
  455. current: 0,
  456. type: "error",
  457. percentage: 50, //进度条
  458. logshow: false, //物流选择
  459. status_collection: "", //我的包裹选择值
  460. transit: 0, //发往中转点
  461. receipt: 0, //中转已签收
  462. overseas: 0, //正发往海外
  463. topadd: {}, //新建寄件人
  464. bottomadd: {}, //新建收件人
  465. province_id: "",
  466. country_id:'',
  467. leftname: "",
  468. rightname: "",
  469. container_id: "", //货柜列表
  470. // language: "zh-CN",
  471. goodinfo: {}, //物品信息
  472. unit_price: "",
  473. expressList: [],
  474. leftchange: "",
  475. rightchange: "",
  476. typeid: "",
  477. unReadCount: 0,
  478. };
  479. },
  480. created(options) {
  481. this.list = [this.i18n.border, this.i18n.shop];
  482. // if (options.current) {
  483. // this.current = options.current
  484. // }
  485. this.topadd = {}; //新建寄件人
  486. this.bottomadd = {}; //新建收件人
  487. },
  488. mounted() {
  489. this.list[0] = this.i18n.border;
  490. this.list[1] = this.i18n.shop;
  491. // uni.setNavigationBarTitle({
  492. // title: this.i18n.setup
  493. // })
  494. this.express(); //获取包裹数量
  495. // if (uni.getStorageSync("language") != "") {
  496. // this.language = uni.getStorageSync("language");
  497. // }
  498. this.getexpress();
  499. this.getlist();
  500. },
  501. computed: {
  502. i18n() {
  503. return this.$t("index");
  504. },
  505. },
  506. methods: {
  507. getlist() {
  508. this.unReadCount = 0;
  509. conn
  510. .getServerConversations({
  511. pageSize: 50,
  512. cursor: "",
  513. })
  514. .then((res) => {
  515. console.log(res);
  516. res.data.conversations.forEach((item) => {
  517. this.unReadCount += item.unReadCount;
  518. });
  519. });
  520. },
  521. onShareAppMessage(res) {
  522. if (res.from === "button") {
  523. // 来自页面内分享按钮
  524. console.log(res.target);
  525. }
  526. return {
  527. title: this.i18n.border,
  528. path: "/pages/index/index?current=0",
  529. };
  530. },
  531. callphone() {
  532. uni.$u.http
  533. .get("/api/config", {
  534. params: {
  535. module: "basic",
  536. },
  537. })
  538. .then((res) => {
  539. console.log(res);
  540. uni.makePhoneCall({
  541. phoneNumber: res.service_mobile,
  542. });
  543. })
  544. .catch(() => {});
  545. },
  546. //价格计算
  547. calculate() {
  548. uni.$u.http
  549. .get("/api/express-order/calculate", {
  550. params: {
  551. container_id: this.container_id, // 是 String 货柜ID
  552. weight: this.goodinfo.weight, //是 String 重量(kg)
  553. length: this.goodinfo.length, //是 String 长(m)
  554. width: this.goodinfo.width, //是 String 宽(m)
  555. height: this.goodinfo.height, //是 String 高(m)
  556. type: this.goodinfo.goodtype, //是 String 商品类型: normal.普通商品,
  557. },
  558. })
  559. .then((res) => {
  560. console.log(res);
  561. uni.navigateTo({
  562. url:
  563. "/pageB/delivery?goodinfo=" +
  564. encodeURIComponent(JSON.stringify(this.goodinfo)) +
  565. "&topadd=" +
  566. encodeURIComponent(JSON.stringify(this.topadd)) +
  567. "&bottom=" +
  568. encodeURIComponent(JSON.stringify(this.bottomadd)) +
  569. "&leftname=" +
  570. this.leftname +
  571. "&rightname=" +
  572. this.rightname +
  573. "&container_id=" +
  574. this.container_id +
  575. "&unit_price=" +
  576. this.unit_price +
  577. "&all=" +
  578. res,
  579. });
  580. })
  581. .catch(() => {});
  582. },
  583. //拼包列表
  584. getexpress() {
  585. uni.$u.http
  586. .get("/api/express-group-package", {
  587. params: {
  588. is_page: 0,
  589. page: 1,
  590. limit: 3,
  591. transport_type_id: "",
  592. container_base_id: "",
  593. type: "",
  594. },
  595. })
  596. .then((res) => {
  597. this.expressList = res;
  598. })
  599. .catch(() => {});
  600. },
  601. //跨境物流选择
  602. success(msg) {
  603. this.logshow = false;
  604. this.leftname = msg.leftname;
  605. this.container_id = msg.dateid;
  606. this.rightname = msg.rightname;
  607. this.unit_price = msg.unit_price;
  608. this.leftchange = msg.leftchange;
  609. this.rightchange = msg.rightchange;
  610. this.typeid = msg.typeid;
  611. },
  612. //物流选择
  613. changewu() {
  614. var that = this;
  615. if (this.province_id) {
  616. this.logshow = true;
  617. setTimeout(() => {
  618. console.log("2222222", this.$refs.child);
  619. that.$refs.child.transport();
  620. }, 800);
  621. } else {
  622. this.$u.toast(this.i18n.selectcity);
  623. }
  624. },
  625. //改变地址
  626. changeadd() {
  627. var a = {};
  628. a = this.topadd;
  629. this.topadd = this.bottomadd;
  630. this.bottomadd = a;
  631. this.province_id = this.bottomadd.province_id;
  632. this.country_id = this.bottomadd.country_id;
  633. },
  634. //正则匹配手机号
  635. replacePhoneToStar: function (phone) {
  636. if (phone) {
  637. return phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2");
  638. }
  639. },
  640. //地址薄
  641. addbook(index) {
  642. var that = this;
  643. uni.navigateTo({
  644. url: "/pageC/addressManagement/addressManagement?tabs=" + index,
  645. events: {
  646. getadd(res) {
  647. if (index == 1) {
  648. that.topadd = res;
  649. console.log("topadd", that.topadd);
  650. } else {
  651. that.bottomadd = res;
  652. console.log("bottom", that.bottomadd);
  653. that.province_id = that.bottomadd.province_id;
  654. that.country_id = that.bottomadd.country_id;
  655. }
  656. },
  657. },
  658. });
  659. },
  660. //我的包裹
  661. express() {
  662. uni.$u.http
  663. .get("/api/express-order/status-count", {})
  664. .then((res) => {
  665. console.log(res);
  666. this.overseas = res.to_overseas;
  667. this.receipt = res.transit_receipt;
  668. this.transit = res.to_transit;
  669. })
  670. .catch(() => {});
  671. },
  672. todev() {
  673. if (JSON.stringify(this.topadd) === "{}") {
  674. this.$u.toast("请填写寄件人地址");
  675. } else if (JSON.stringify(this.bottomadd) === "{}") {
  676. this.$u.toast("请填写收件人地址");
  677. } else if (JSON.stringify(this.goodinfo) === "{}") {
  678. this.$u.toast(this.i18n.select);
  679. } else if (this.leftname == "") {
  680. this.$u.toast(this.i18n.logisticsMethod);
  681. } else {
  682. this.calculate();
  683. }
  684. },
  685. count() {
  686. uni.navigateTo({
  687. url: "/pageB/account",
  688. });
  689. },
  690. pack(index) {
  691. uni.navigateTo({
  692. // url: '/pageB/myPackage?index=' + index
  693. url: "/pageC/myPackage/myPackage?type=" + index,
  694. });
  695. },
  696. more() {
  697. uni.navigateTo({
  698. url: "/pageB/list/list",
  699. });
  700. },
  701. //拼包快递
  702. toaccount(info) {
  703. uni.navigateTo({
  704. url:
  705. "/pageB/ParcelExpress?expressinfo=" +
  706. encodeURIComponent(JSON.stringify(info)) +
  707. "&type=" +
  708. "pin",
  709. });
  710. },
  711. //物流计算器
  712. counter() {
  713. uni.navigateTo({
  714. url: "/pageA/counter",
  715. });
  716. },
  717. //消息
  718. tochat() {
  719. uni.navigateTo({
  720. url: "/pageA/chat/news",
  721. });
  722. },
  723. //物品信息
  724. goods() {
  725. var that = this;
  726. if (JSON.stringify(this.goodinfo) == "{}") {
  727. uni.navigateTo({
  728. url: "/pageB/goods",
  729. events: {
  730. goodinfo: function (res) {
  731. console.log("goodinfo", res);
  732. that.goodinfo = res;
  733. },
  734. },
  735. });
  736. } else {
  737. uni.navigateTo({
  738. url:
  739. "/pageB/goods?goodinfo=" +
  740. encodeURIComponent(JSON.stringify(this.goodinfo)),
  741. events: {
  742. goodinfo: function (res) {
  743. that.goodinfo = res;
  744. console.log(res);
  745. },
  746. },
  747. });
  748. }
  749. },
  750. //寄件人信息
  751. send() {
  752. var that = this;
  753. if (JSON.stringify(that.topadd) == "{}") {
  754. uni.navigateTo({
  755. url: "/pageC/addEditAddress/addEditAddress",
  756. events: {
  757. topadd: function (res) {
  758. // console.log(res);
  759. that.topadd = res;
  760. },
  761. },
  762. });
  763. } else {
  764. var that = this;
  765. uni.navigateTo({
  766. url: "/pageC/addEditAddress/addEditAddress?id=" + that.topadd.id,
  767. events: {
  768. topadd: function (res) {
  769. // console.log(res);
  770. that.topadd = res;
  771. },
  772. },
  773. });
  774. }
  775. },
  776. recipirnt() {
  777. var that = this;
  778. if (JSON.stringify(that.bottomadd) == "{}") {
  779. uni.navigateTo({
  780. url: "/pageB/recipientinfo",
  781. events: {
  782. bottomadd: function (res) {
  783. console.log(res);
  784. that.bottomadd = res;
  785. that.province_id = res.province_id;
  786. that.country_id = res.country_id;
  787. },
  788. },
  789. });
  790. } else {
  791. uni.navigateTo({
  792. url: "/pageB/recipientinfo?id=" + that.bottomadd.id,
  793. events: {
  794. bottomadd: function (res) {
  795. console.log(res);
  796. that.bottomadd = res;
  797. that.province_id = res.province_id;
  798. that.country_id = res.country_id;
  799. },
  800. },
  801. });
  802. }
  803. },
  804. close() {
  805. this.logshow = false;
  806. },
  807. //分段器切换
  808. sectionChange(index) {
  809. this.current = index;
  810. console.log(index);
  811. if (this.current == 1) {
  812. uni.switchTab({
  813. url: "/pages/index/index?current=1",
  814. });
  815. this.current = 0;
  816. }
  817. },
  818. toparcel() {
  819. uni.navigateTo({
  820. url: "/pageB/parcel",
  821. });
  822. },
  823. },
  824. };
  825. </script>
  826. <style lang="scss" scoped>
  827. button {
  828. border: 0rpx solid rgba(0, 0, 0, 1) !important;
  829. }
  830. page {
  831. background-color: rgba(0, 0, 0, 0);
  832. }
  833. .bao {
  834. font-family: PingFangSC, PingFang SC;
  835. font-weight: 400;
  836. font-size: 26rpx;
  837. color: #222222;
  838. line-height: 36rpx;
  839. text-align: center;
  840. font-style: normal;
  841. }
  842. .goodname {
  843. font-family: SFPro, SFPro;
  844. font-weight: 400;
  845. font-size: 28rpx;
  846. color: #222222;
  847. line-height: 32rpx;
  848. text-align: left;
  849. font-style: normal;
  850. }
  851. .topname {
  852. font-family: PingFangSC, PingFang SC;
  853. font-weight: 500;
  854. font-size: 30rpx;
  855. color: #222222;
  856. line-height: 42rpx;
  857. text-align: left;
  858. font-style: normal;
  859. }
  860. .topaddress {
  861. font-family: PingFangSC, PingFang SC;
  862. font-weight: 400;
  863. font-size: 26rpx;
  864. color: #777777;
  865. line-height: 36rpx;
  866. text-align: left;
  867. font-style: normal;
  868. }
  869. .pop {
  870. font-family: PingFangSC, PingFang SC;
  871. font-weight: 500;
  872. font-size: 36rpx;
  873. color: #333333;
  874. line-height: 50rpx;
  875. text-align: left;
  876. font-style: normal;
  877. padding: 32rpx 28rpx 0 0;
  878. box-sizing: border-box;
  879. }
  880. .mon {
  881. font-family: HarmonyOS_Sans_Medium;
  882. font-size: 20rpx;
  883. color: #f83224;
  884. line-height: 26rpx;
  885. text-align: left;
  886. font-style: normal;
  887. font-weight: 600;
  888. }
  889. .bigtitle {
  890. font-family: PingFangSC, PingFang SC;
  891. font-weight: 600;
  892. font-size: 28rpx;
  893. color: #222222;
  894. line-height: 40rpx;
  895. text-align: left;
  896. font-style: normal;
  897. }
  898. .timeb {
  899. font-family: PingFangSC, PingFang SC;
  900. font-weight: 400;
  901. font-size: 22rpx;
  902. color: #666666;
  903. line-height: 32rpx;
  904. text-align: left;
  905. font-style: normal;
  906. }
  907. .timea {
  908. font-family: PingFangSC, PingFang SC;
  909. font-weight: 400;
  910. font-size: 22rpx;
  911. color: #555555;
  912. line-height: 32rpx;
  913. text-align: left;
  914. font-style: normal;
  915. }
  916. .pinb {
  917. width: 148rpx;
  918. height: 64rpx;
  919. background: #ff1515;
  920. border-radius: 42rpx;
  921. font-family: PingFangSC, PingFang SC;
  922. font-weight: 500;
  923. font-size: 28rpx;
  924. color: #ffffff;
  925. line-height: 64rpx;
  926. text-align: center;
  927. font-style: normal;
  928. }
  929. .label {
  930. margin-top: 20rpx;
  931. width: 702rpx;
  932. // height: 288rpx;
  933. background: #ffffff;
  934. border-radius: 16rpx;
  935. padding: 32rpx 20rpx;
  936. box-sizing: border-box;
  937. .left {
  938. width: 144rpx;
  939. height: 144rpx;
  940. background: #f5f5f5;
  941. border-radius: 8rpx;
  942. .bourn {
  943. font-family: PingFangSC, PingFang SC;
  944. font-weight: 400;
  945. font-size: 20rpx;
  946. color: #222222;
  947. line-height: 28rpx;
  948. text-align: left;
  949. font-style: normal;
  950. }
  951. .addres {
  952. font-family: PingFangSC, PingFang SC;
  953. font-weight: 500;
  954. font-size: 28rpx;
  955. color: #222222;
  956. line-height: 40rpx;
  957. text-align: left;
  958. font-style: normal;
  959. }
  960. }
  961. }
  962. .flexc {
  963. display: flex;
  964. flex-direction: column;
  965. justify-content: center;
  966. align-items: center;
  967. }
  968. .hai {
  969. font-family: PingFangSC, PingFang SC;
  970. font-weight: 600;
  971. font-size: 32rpx;
  972. color: #222222;
  973. line-height: 44rpx;
  974. text-align: left;
  975. font-style: normal;
  976. margin-right: 10rpx;
  977. }
  978. .more {
  979. font-family: PingFangSC, PingFang SC;
  980. font-weight: 400;
  981. font-size: 24rpx;
  982. color: #f83224;
  983. line-height: 34rpx;
  984. text-align: left;
  985. font-style: normal;
  986. }
  987. .parcel {
  988. width: 702rpx;
  989. // height: 260rpx;
  990. background: #ffffff;
  991. border-radius: 16rpx;
  992. margin-top: 20rpx;
  993. padding: 24rpx;
  994. box-sizing: border-box;
  995. .myparcel {
  996. font-family: PingFangSC, PingFang SC;
  997. font-weight: 600;
  998. font-size: 28rpx;
  999. color: #222222;
  1000. line-height: 40rpx;
  1001. text-align: left;
  1002. font-style: normal;
  1003. }
  1004. .add {
  1005. // width: 240rpx;
  1006. height: 48rpx;
  1007. background: rgba(248, 50, 36, 0.06);
  1008. border-radius: 24rpx;
  1009. .addtext {
  1010. font-family: PingFangSC, PingFang SC;
  1011. font-weight: 600;
  1012. font-size: 20rpx;
  1013. color: #000000;
  1014. line-height: 28rpx;
  1015. text-align: left;
  1016. font-style: normal;
  1017. }
  1018. }
  1019. }
  1020. .address {
  1021. width: 702rpx;
  1022. // height: 776rpx;
  1023. background: #ffffff;
  1024. border-radius: 20rpx;
  1025. padding: 48rpx 24rpx 36rpx;
  1026. box-sizing: border-box;
  1027. margin-top: 38rpx;
  1028. .bottom {
  1029. padding: 0 76rpx;
  1030. box-sizing: border-box;
  1031. margin-top: 48rpx;
  1032. .friend {
  1033. font-family: PingFangSC, PingFang SC;
  1034. font-weight: 400;
  1035. font-size: 28rpx;
  1036. color: #555555;
  1037. line-height: 40rpx;
  1038. text-align: left;
  1039. font-style: normal;
  1040. margin-left: 12rpx;
  1041. }
  1042. }
  1043. .mail {
  1044. width: 646rpx;
  1045. height: 84rpx;
  1046. background: #f83224;
  1047. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  1048. border-radius: 44rpx;
  1049. font-family: PingFangSC, PingFang SC;
  1050. font-weight: 500;
  1051. font-size: 32rpx;
  1052. color: #ffffff;
  1053. line-height: 84rpx;
  1054. text-align: center;
  1055. font-style: normal;
  1056. }
  1057. .info {
  1058. height: 100rpx;
  1059. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  1060. .wupin {
  1061. font-family: PingFangSC, PingFang SC;
  1062. font-weight: 400;
  1063. font-size: 28rpx;
  1064. color: #333333;
  1065. line-height: 40rpx;
  1066. text-align: left;
  1067. font-style: normal;
  1068. }
  1069. .change {
  1070. font-family: PingFangSC, PingFang SC;
  1071. font-weight: 400;
  1072. font-size: 28rpx;
  1073. color: #666666;
  1074. line-height: 40rpx;
  1075. text-align: left;
  1076. font-style: normal;
  1077. }
  1078. .mast {
  1079. // width: 62rpx;
  1080. height: 30rpx;
  1081. border-radius: 16rpx;
  1082. border: 1rpx solid #f83224;
  1083. font-family: PingFangSC, PingFang SC;
  1084. font-weight: 400;
  1085. font-size: 20rpx;
  1086. color: #ff1515;
  1087. line-height: 30rpx;
  1088. text-align: center;
  1089. font-style: normal;
  1090. margin-left: 12rpx;
  1091. padding: 0 4rpx;
  1092. box-sizing: border-box;
  1093. }
  1094. }
  1095. .left {
  1096. height: 128rpx;
  1097. .pople {
  1098. font-family: PingFangSC, PingFang SC;
  1099. font-weight: 500;
  1100. font-size: 30rpx;
  1101. color: #222222;
  1102. line-height: 42rpx;
  1103. text-align: left;
  1104. font-style: normal;
  1105. }
  1106. .jiadd {
  1107. font-family: PingFangSC, PingFang SC;
  1108. font-weight: 400;
  1109. font-size: 26rpx;
  1110. color: #777777;
  1111. line-height: 36rpx;
  1112. text-align: left;
  1113. font-style: normal;
  1114. }
  1115. .right {
  1116. font-family: PingFangSC, PingFang SC;
  1117. font-weight: 600;
  1118. font-size: 26rpx;
  1119. color: #222222;
  1120. line-height: 36rpx;
  1121. text-align: left;
  1122. font-style: normal;
  1123. margin-left: 18rpx;
  1124. }
  1125. }
  1126. }
  1127. // ::v-deep .u-navbar__content.data-v-1194bf80 {
  1128. // background-color: rgba(0, 0, 0, 0) !important;
  1129. // }
  1130. // ::v-deep .u-status-bar.data-v-13f16680 {
  1131. // background-color: rgba(0, 0, 0, 0) !important;
  1132. // }
  1133. ::v-deep .u-subsection--button.data-v-b14d3440 {
  1134. /* padding: 6rpx 34rpx !important; */
  1135. border-radius: 64rpx !important;
  1136. }
  1137. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  1138. border-radius: 32rpx !important;
  1139. }
  1140. </style>