ParcelExpress.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  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='i18n.delivery' 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. <view class="entrepot">
  16. <view class="entre u-flex u-row-between">
  17. <view class="" style="width: 520rpx;" >
  18. <text class='bigtitle' v-if="expressinfo.type=='normal'">{{i18n.Ordinary}}</text>
  19. <text class='bigtitle' v-else>{{i18n.Special}}</text>
  20. <text style="margin: 0 8rpx;">|</text>
  21. <text v-if="language =='zh-CN'" class='bigtitle'>{{expressinfo.transportType.name_cn}}</text>
  22. <text v-if="language =='en-US'" class='bigtitle'>{{expressinfo.transportType.name_en}}</text>
  23. <text v-if="language =='es-ES'" class='bigtitle'>{{expressinfo.transportType.name_es}}</text>
  24. <text v-if="language =='it-IT'" class='bigtitle'>{{expressinfo.transportType.name_ita}}</text>
  25. </view>
  26. <view class="change" @click="changeji">{{i18n.Toggle}}</view>
  27. </view>
  28. <view class="box u-row-around u-flex">
  29. <view class="flexc">
  30. <view class="entrepotname">{{expressinfo.transit_full_address.slice(0,6)}}</view>
  31. <view class="adda">{{i18n.Starting}}</view>
  32. </view>
  33. <image src="/pageB/static/images/arrows.png" style="width: 130rpx;height: 10rpx;" mode=""></image>
  34. <view class="flexc">
  35. <view class="entrepotname">{{expressinfo.containerBase.country_name}}</view>
  36. <view class="adda">{{i18n.destination}}</view>
  37. </view>
  38. </view>
  39. <view class="timea">
  40. <text>{{i18n.start}}:{{expressinfo.begin_date}}</text>
  41. <text>{{i18n.cut}}:{{expressinfo.end_date}}</text>
  42. </view>
  43. </view>
  44. <!-- 地址 -->
  45. <view class="address">
  46. <view class="left u-flex" style="display: flex;" @click="send">
  47. <view class="u-row-between left" style="display: flex;flex-direction: column;">
  48. <image src="/static/express/ji.png" style='width: 40rpx;;height:40rpx ;' mode=""></image>
  49. <image @click.stop="changeadd" src="/static/express/change.png"
  50. style='width: 40rpx;;height:40rpx ;' mode="">
  51. </image>
  52. </view>
  53. <view class=" u-row-between left"
  54. style="flex: 1;margin-left: 28rpx;border-bottom:2rpx solid rgba(151, 151, 151, 0.08) ;display: flex;">
  55. <view v-if="JSON.stringify(topadd)==='{}'" class="u-row-between " style="" @click="send">
  56. <view class="pople">{{i18n.sender}}</view>
  57. <view class="jiadd" style="margin-top: 14rpx;">{{i18n.informat}}</view>
  58. </view>
  59. <view v-else class="u-row-between " style="" @click="send">
  60. <view class="">
  61. <text class="topname">{{topadd.name}}</text>
  62. <text class="topaddress"
  63. style="margin-left: 8rpx;">{{replacePhoneToStar(topadd.mobile)}}</text>
  64. </view>
  65. <view class="topaddress" style="margin-top: 14rpx;">{{topadd.full_address}}</view>
  66. </view>
  67. <view class="u-flex" @click.stop="addbook(0)">
  68. <view class="" style="color: rgba(151, 151, 151, 1);">|</view>
  69. <text class="right">{{i18n.addressbook}}</text>
  70. </view>
  71. </view>
  72. </view>
  73. <view class="left u-flex"
  74. style="display: flex;margin-top: 26rpx;border-bottom:2rpx solid rgba(151, 151, 151, 0.08)"
  75. @click="recipirnt">
  76. <view class="u-row-between left" style="display: flex;flex-direction: column;">
  77. <image src="/static/express/shou.png" style='width: 40rpx;;height:40rpx ;' mode=""></image>
  78. <!-- <image src="../../static/express/change.png" style='width: 40rpx;;height:40rpx ;' mode=""> -->
  79. </image>
  80. </view>
  81. <view class=" u-row-between left" style="flex: 1;margin-left: 28rpx;display: flex;">
  82. <view v-if="JSON.stringify(bottomadd)==='{}'" class="u-row-between " style=""
  83. @click="recipirnt">
  84. <view class="pople">{{i18n.recipient}}</view>
  85. <view class="jiadd" style="margin-top: 14rpx;">{{i18n.informate}}</view>
  86. </view>
  87. <view v-else class="u-row-between " style="" @click="send">
  88. <view class="">
  89. <text class="topname">{{bottomadd.name}}</text>
  90. <text class="topaddress"
  91. style="margin-left: 8rpx;">{{replacePhoneToStar(bottomadd.mobile)}}</text>
  92. </view>
  93. <view class="topaddress" style="margin-top: 14rpx;">{{bottomadd.full_address}}</view>
  94. </view>
  95. <view class="u-flex" @click.stop="addbook(1)">
  96. <view class="" style="color: rgba(151, 151, 151, 1);">|</view>
  97. <text class="right">{{i18n.addressbook}}</text>
  98. </view>
  99. </view>
  100. </view>
  101. </view>
  102. <view class="wup" @click="goods">
  103. <!-- 物品信息 -->
  104. <view class="info u-flex u-row-between">
  105. <view class="u-flex">
  106. <text class="wupin">{{i18n.item}}</text>
  107. <view class="mast">{{i18n.required}}</view>
  108. </view>
  109. <view v-if="JSON.stringify(goodinfo)==='{}'" class="u-flex" @click.stop='goods'>
  110. <text class="change">{{i18n.selection}}</text>
  111. <image src="/static/express/next1.png" style="width: 28rpx;height: 28rpx;margin-left: 6rpx;"
  112. mode=""></image>
  113. </view>
  114. <view v-else class="goodname" @click.stop='goods'>
  115. {{goodinfo.goodname}},{{goodinfo.weight}}kg
  116. </view>
  117. </view>
  118. </view>
  119. <!-- 下一步 -->
  120. <view class="next u-flex-between" style="display: flex;">
  121. <view class="" style="flex: 1;">
  122. <view class="sum">
  123. <text style="font-size: 24rpx;margin-right: 12rpx;">{{i18n.Estimatedprice}}</text>
  124. <text style="color: rgba(248, 50, 36, 1);font-size: 26rpx;">¥ </text>
  125. <text style="color: rgba(248, 50, 36, 1);font-size: 36rpx;font-weight: 600;">
  126. {{sum?sum:'--'}}</text>
  127. </view>
  128. <view class="deal u-flex" style="margin-top: 16rpx;">
  129. <u-checkbox-group shape='circle' v-model="checkboxValue1" placement="column"
  130. @change="checkboxChange">
  131. <u-checkbox :customStyle="{marginBottom: '8px',marginTop:'5px'}" :name="deal">
  132. </u-checkbox>
  133. </u-checkbox-group>
  134. <text>{{i18n.readandagree}}</text>
  135. <text style="color: rgba(248, 50, 36, 1);"
  136. @click="internationalshowa">《{{i18n.International}}》</text>
  137. </view>
  138. </view>
  139. <view class="tonext " style="" @click="next">
  140. {{i18n.next}}
  141. </view>
  142. </view>
  143. <u-popup :show="internationalshow" :round="20" @close="close()" :closeable='true'>
  144. <view style="
  145. padding: 48rpx 24rpx;
  146. box-sizing: border-box;
  147. position: relative;
  148. border-radius: 20rpx 20rpx 0 0;
  149. ">
  150. <view class="" style="text-align: center;font-size: 30rpx;font-weight: 600;margin-bottom: 20rpx;">{{contenttitle}}</view>
  151. <u-parse :content="content"></u-parse>
  152. </view>
  153. </u-popup>
  154. </view>
  155. </view>
  156. </template>
  157. <script>
  158. export default {
  159. data() {
  160. return {
  161. deal: -1,
  162. checkboxValue1: [],
  163. expressinfo: {},
  164. topadd: {},
  165. bottomadd: {},
  166. province_id: '',
  167. goodinfo: {}, //物品信息
  168. sum: '',
  169. internationalshow: false,
  170. content: '',
  171. contenttitle: '',
  172. language: "zh-CN",
  173. }
  174. },
  175. onLoad(options) {
  176. this.expressinfo = JSON.parse(decodeURIComponent(options.expressinfo));
  177. if (uni.getStorageSync("language") != "") {
  178. this.language = uni.getStorageSync("language");
  179. }
  180. },
  181. computed: {
  182. i18n() {
  183. return this.$t('index')
  184. }
  185. },
  186. methods: {
  187. changeji(){
  188. uni.navigateBack()
  189. },
  190. close() {
  191. this.internationalshow = false
  192. },
  193. internationalshowa() {
  194. this.internationalshow = true
  195. this.international()
  196. },
  197. //国际快递服务协议
  198. international() {
  199. uni.$u.http.get('/api/agreement', {
  200. params: {
  201. code: 'international_express_service'
  202. }
  203. }).then((res) => {
  204. console.log(res);
  205. if (this.language == 'zh-CN') {
  206. this.content = res.content_cn
  207. this.contenttitle = res.name_cn
  208. }
  209. if (this.language == 'en-US') {
  210. this.content = res.content_en
  211. this.contenttitle = res.name_en
  212. }
  213. if (this.language == 'es-ES') {
  214. this.content = res.content_es
  215. this.contenttitle = res.content_ita
  216. }
  217. if (this.language == 'it-IT') {
  218. this.content = res.content_cn
  219. this.contenttitle = res.name_ita
  220. }
  221. }).catch(() => {})
  222. },
  223. //改变地址
  224. changeadd() {
  225. var a = {}
  226. a = this.topadd
  227. this.topadd = this.bottomadd
  228. this.bottomadd = a
  229. this.province_id = this.bottomadd.province_id
  230. },
  231. //正则匹配手机号
  232. replacePhoneToStar: function(phone) {
  233. if (phone) {
  234. return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
  235. }
  236. },
  237. //地址薄
  238. addbook(index) {
  239. var that = this
  240. uni.navigateTo({
  241. url: "/pageC/addressManagement/addressManagement?index=" + index,
  242. events: {
  243. getadd(res) {
  244. if (index == 0) {
  245. that.topadd = res
  246. console.log('topadd', that.topadd);
  247. } else {
  248. that.bottomadd = res
  249. console.log('bottom', that.bottomadd);
  250. that.province_id = that.bottomadd.province_id
  251. }
  252. }
  253. }
  254. })
  255. },
  256. //物品信息
  257. goods() {
  258. if(JSON.stringify(this.topadd)=="{}"){
  259. this.$u.toast('请填写寄件地址')
  260. return
  261. }
  262. if(JSON.stringify(this.bottomadd)=="{}"){
  263. this.$u.toast('请填写收件地址')
  264. return
  265. }
  266. var that = this
  267. uni.navigateTo({
  268. url: '/pageB/goods',
  269. events: {
  270. goodinfo: function(res) {
  271. that.goodinfo = res
  272. that.calculate()
  273. }
  274. }
  275. })
  276. },
  277. //寄件人信息
  278. send() {
  279. uni.navigateTo({
  280. url: '/pageB/Senderinfor'
  281. })
  282. },
  283. recipirnt() {
  284. uni.navigateTo({
  285. url: '/pageB/recipientinfo'
  286. })
  287. },
  288. checkboxChange(n) {
  289. console.log('change', n);
  290. },
  291. //下单
  292. next() {
  293. if (JSON.stringify(this.topadd) === '{}') {
  294. this.$u.toast('请填写寄货地址')
  295. return
  296. }
  297. if (JSON.stringify(this.bottomadd) === '{}') {
  298. this.$u.toast('请填写收货地址')
  299. return
  300. }
  301. if (JSON.stringify(this.goodinfo) === '{}') {
  302. this.$u.toast('请填写物品信息')
  303. return
  304. }
  305. if (this.checkboxValue1.length == 0) {
  306. this.$u.toast('请勾选协议')
  307. return
  308. }
  309. uni.$u.http.post('/api/express-order/group-create', {
  310. group_package_id: this.expressinfo.id, // 是 String 拼包ID
  311. from_address_id: this.topadd.id, // 是 String 寄出地址ID
  312. to_address_id: this.bottomadd.id, // 是 String 目标地址ID
  313. goods_name: this.goodinfo.goodname, //是 String 商品名称
  314. goods_num: this.goodinfo.number, //是 String 商品数量
  315. goods_weight: this.goodinfo.weight, // 是 String 商品重量
  316. goods_length: Number(this.goodinfo.length), // 是 String 长
  317. goods_width: Number(this.goodinfo.width), // 是 String 宽
  318. goods_height: Number(this.goodinfo.height),
  319. }).then((res) => {
  320. this.orderinfo = res
  321. uni.navigateTo({
  322. url: '/pageB/account?goodinfo=' + encodeURIComponent(JSON.stringify(this
  323. .goodinfo)) +
  324. '&topadd=' + encodeURIComponent(JSON.stringify(this.topadd)) + '&bottomadd=' +
  325. encodeURIComponent(JSON.stringify(this.bottomadd)) + '&expressinfo=' +
  326. encodeURIComponent(
  327. JSON.stringify(this.expressinfo)) + '&orderinfo=' + encodeURIComponent(JSON
  328. .stringify(
  329. this.orderinfo))
  330. })
  331. }).catch(() => {
  332. })
  333. },
  334. calculate() {
  335. uni.$u.http.post('/api/express-order/group-calculate', {
  336. group_package_id: this.expressinfo.id, // 是 String 拼包ID
  337. weight: this.goodinfo.weight, // 是 String 商品重量
  338. length: this.goodinfo.length, // 是 String 长
  339. width: this.goodinfo.width, // 是 String 宽
  340. height: this.goodinfo.height,
  341. }).then((res) => {
  342. this.sum = res.amount
  343. }).catch(() => {
  344. })
  345. },
  346. }
  347. }
  348. </script>
  349. <style lang="scss" scoped>
  350. .goodname {
  351. font-family: SFPro, SFPro;
  352. font-weight: 400;
  353. font-size: 28rpx;
  354. color: #222222;
  355. line-height: 32rpx;
  356. text-align: left;
  357. font-style: normal;
  358. }
  359. .topname {
  360. font-family: PingFangSC, PingFang SC;
  361. font-weight: 500;
  362. font-size: 30rpx;
  363. color: #222222;
  364. line-height: 42rpx;
  365. text-align: left;
  366. font-style: normal;
  367. }
  368. .entrepot {
  369. width: 702rpx;
  370. // height: 360rpx;
  371. background: #FFFFFF;
  372. border-radius: 16rpx;
  373. // margin-bottom: 20rpx;
  374. padding: 0 20rpx 32rpx;
  375. box-sizing: border-box;
  376. .timea {
  377. font-family: PingFangSC, PingFang SC;
  378. font-weight: 400;
  379. font-size: 26rpx;
  380. color: #444444;
  381. line-height: 36rpx;
  382. text-align: left;
  383. font-style: normal;
  384. margin-top: 30rpx;
  385. }
  386. .adda {
  387. margin-top: 8rpx;
  388. font-family: PingFangSC, PingFang SC;
  389. font-weight: 400;
  390. font-size: 24rpx;
  391. color: #222222;
  392. line-height: 34rpx;
  393. text-align: right;
  394. font-style: normal;
  395. }
  396. .entrepotname {
  397. font-family: PingFangSC, PingFang SC;
  398. font-weight: 560;
  399. font-size: 32rpx;
  400. color: #222222;
  401. line-height: 44rpx;
  402. text-align: left;
  403. font-style: normal;
  404. }
  405. .box {
  406. width: 662rpx;
  407. height: 128rpx;
  408. background: #F5F5F5;
  409. border-radius: 10rpx;
  410. }
  411. .entre {
  412. width: 662rpx;
  413. height: 100rpx;
  414. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  415. line-height: 100rpx;
  416. .title {
  417. font-family: PingFangSC, PingFang SC;
  418. font-weight: 600;
  419. font-size: 28rpx;
  420. color: #222222;
  421. line-height: 40rpx;
  422. text-align: left;
  423. font-style: normal;
  424. }
  425. .change {
  426. // width: 100rpx;
  427. padding: 10rpx 26rpx;
  428. // height: 52rpx;
  429. display: inline;
  430. background: rgba(255, 21, 21, 0.1);
  431. border-radius: 30rpx;
  432. font-family: PingFangSC, PingFang SC;
  433. font-weight: 400;
  434. font-size: 24rpx;
  435. color: #F83224;
  436. line-height: 32rpx;
  437. text-align: center;
  438. font-style: normal;
  439. box-sizing: border-box;
  440. }
  441. }
  442. }
  443. .sum {
  444. font-family: PingFangSC, PingFang SC;
  445. font-weight: 500;
  446. font-size: 24rpx;
  447. color: #222222;
  448. line-height: 34rpx;
  449. text-align: left;
  450. font-style: normal;
  451. }
  452. .deal {
  453. font-family: PingFangSC, PingFang SC;
  454. font-weight: 400;
  455. font-size: 20rpx;
  456. color: #666666;
  457. line-height: 28rpx;
  458. text-align: left;
  459. font-style: normal;
  460. }
  461. .tonext {
  462. width: 286rpx;
  463. height: 88rpx;
  464. background: #F83224;
  465. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  466. border-radius: 44rpx;
  467. font-family: PingFangSC, PingFang SC;
  468. font-weight: 500;
  469. font-size: 32rpx;
  470. color: #FFFFFF;
  471. line-height: 88rpx;
  472. text-align: center;
  473. font-style: normal;
  474. }
  475. .next {
  476. width: 750rpx;
  477. height: 166rpx;
  478. background: #FFFFFF;
  479. position: fixed;
  480. bottom: 0;
  481. left: 0;
  482. padding: 12rpx 24rpx;
  483. box-sizing: border-box;
  484. }
  485. .wup {
  486. width: 704rpx;
  487. // height: 220rpx;
  488. background: #FFFFFF;
  489. border-radius: 16rpx;
  490. margin-top: 20rpx;
  491. padding: 0rpx 20rpx;
  492. box-sizing: border-box;
  493. }
  494. .info {
  495. height: 100rpx;
  496. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  497. .wupin {
  498. font-family: PingFangSC, PingFang SC;
  499. font-weight: 400;
  500. font-size: 28rpx;
  501. color: #333333;
  502. line-height: 40rpx;
  503. text-align: left;
  504. font-style: normal;
  505. }
  506. .change {
  507. font-family: PingFangSC, PingFang SC;
  508. font-weight: 400;
  509. font-size: 28rpx;
  510. color: #666666;
  511. line-height: 40rpx;
  512. text-align: left;
  513. font-style: normal;
  514. }
  515. .mast {
  516. // width: 62rpx;
  517. padding: 0 10rpx;
  518. height: 30rpx;
  519. border-radius: 16rpx;
  520. border: 1rpx solid #F83224;
  521. font-family: PingFangSC, PingFang SC;
  522. font-weight: 400;
  523. font-size: 20rpx;
  524. color: #FF1515;
  525. line-height: 30rpx;
  526. text-align: center;
  527. font-style: normal;
  528. margin-left: 12rpx;
  529. }
  530. }
  531. .mon {
  532. font-family: HarmonyOS_Sans_Medium;
  533. font-size: 20rpx;
  534. color: #F83224;
  535. line-height: 26rpx;
  536. text-align: left;
  537. font-style: normal;
  538. }
  539. .bigtitle {
  540. font-family: PingFangSC, PingFang SC;
  541. font-weight: 600;
  542. font-size: 28rpx;
  543. color: #222222;
  544. line-height: 40rpx;
  545. text-align: left;
  546. font-style: normal;
  547. }
  548. .timeb {
  549. font-family: PingFangSC, PingFang SC;
  550. font-weight: 400;
  551. font-size: 22rpx;
  552. color: #666666;
  553. line-height: 32rpx;
  554. text-align: left;
  555. font-style: normal;
  556. }
  557. .timea {
  558. font-family: PingFangSC, PingFang SC;
  559. font-weight: 400;
  560. font-size: 22rpx;
  561. color: #555555;
  562. line-height: 32rpx;
  563. text-align: left;
  564. font-style: normal;
  565. }
  566. .pinb {
  567. width: 148rpx;
  568. height: 64rpx;
  569. background: #FF1515;
  570. border-radius: 42rpx;
  571. font-family: PingFangSC, PingFang SC;
  572. font-weight: 500;
  573. font-size: 28rpx;
  574. color: #FFFFFF;
  575. line-height: 64rpx;
  576. text-align: center;
  577. font-style: normal;
  578. }
  579. .label {
  580. margin-top: 20rpx;
  581. width: 702rpx;
  582. height: 288rpx;
  583. background: #FFFFFF;
  584. border-radius: 16rpx;
  585. padding: 32rpx 20rpx;
  586. box-sizing: border-box;
  587. .left {
  588. width: 144rpx;
  589. height: 144rpx;
  590. background: #F5F5F5;
  591. border-radius: 8rpx;
  592. .bourn {
  593. font-family: PingFangSC, PingFang SC;
  594. font-weight: 400;
  595. font-size: 20rpx;
  596. color: #222222;
  597. line-height: 28rpx;
  598. text-align: left;
  599. font-style: normal;
  600. }
  601. .addres {
  602. font-family: PingFangSC, PingFang SC;
  603. font-weight: 500;
  604. font-size: 28rpx;
  605. color: #222222;
  606. line-height: 40rpx;
  607. text-align: left;
  608. font-style: normal;
  609. }
  610. }
  611. }
  612. .flexc {
  613. display: flex;
  614. flex-direction: column;
  615. justify-content: center;
  616. align-items: center;
  617. }
  618. .hai {
  619. font-family: PingFangSC, PingFang SC;
  620. font-weight: 600;
  621. font-size: 32rpx;
  622. color: #222222;
  623. line-height: 44rpx;
  624. text-align: left;
  625. font-style: normal;
  626. margin-right: 10rpx;
  627. }
  628. .more {
  629. font-family: PingFangSC, PingFang SC;
  630. font-weight: 400;
  631. font-size: 24rpx;
  632. color: #F83224;
  633. line-height: 34rpx;
  634. text-align: left;
  635. font-style: normal;
  636. }
  637. .parcel {
  638. width: 702rpx;
  639. height: 260rpx;
  640. background: #FFFFFF;
  641. border-radius: 16rpx;
  642. margin-top: 20rpx;
  643. padding: 24rpx;
  644. box-sizing: border-box;
  645. .myparcel {
  646. font-family: PingFangSC, PingFang SC;
  647. font-weight: 600;
  648. font-size: 28rpx;
  649. color: #222222;
  650. line-height: 40rpx;
  651. text-align: left;
  652. font-style: normal;
  653. }
  654. .add {
  655. width: 240rpx;
  656. height: 48rpx;
  657. background: rgba(248, 50, 36, 0.06);
  658. border-radius: 24rpx;
  659. .addtext {
  660. font-family: PingFangSC, PingFang SC;
  661. font-weight: 600;
  662. font-size: 20rpx;
  663. color: #000000;
  664. line-height: 28rpx;
  665. text-align: left;
  666. font-style: normal;
  667. }
  668. }
  669. }
  670. .address {
  671. width: 702rpx;
  672. // height: 776rpx;
  673. background: #FFFFFF;
  674. border-radius: 20rpx;
  675. padding: 48rpx 24rpx 36rpx;
  676. box-sizing: border-box;
  677. margin-top: 38rpx;
  678. .bottom {
  679. padding: 0 76rpx;
  680. box-sizing: border-box;
  681. margin-top: 48rpx;
  682. .friend {
  683. font-family: PingFangSC, PingFang SC;
  684. font-weight: 400;
  685. font-size: 28rpx;
  686. color: #555555;
  687. line-height: 40rpx;
  688. text-align: left;
  689. font-style: normal;
  690. margin-left: 12rpx;
  691. }
  692. }
  693. .mail {
  694. width: 646rpx;
  695. height: 84rpx;
  696. background: #F83224;
  697. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  698. border-radius: 44rpx;
  699. font-family: PingFangSC, PingFang SC;
  700. font-weight: 500;
  701. font-size: 32rpx;
  702. color: #FFFFFF;
  703. line-height: 84rpx;
  704. text-align: center;
  705. font-style: normal;
  706. }
  707. .left {
  708. height: 128rpx;
  709. .pople {
  710. font-family: PingFangSC, PingFang SC;
  711. font-weight: 500;
  712. font-size: 30rpx;
  713. color: #222222;
  714. line-height: 42rpx;
  715. text-align: left;
  716. font-style: normal;
  717. }
  718. .jiadd {
  719. font-family: PingFangSC, PingFang SC;
  720. font-weight: 400;
  721. font-size: 26rpx;
  722. color: #777777;
  723. line-height: 36rpx;
  724. text-align: left;
  725. font-style: normal;
  726. }
  727. .right {
  728. font-family: PingFangSC, PingFang SC;
  729. font-weight: 500;
  730. font-size: 26rpx;
  731. color: #222222;
  732. line-height: 36rpx;
  733. text-align: left;
  734. font-style: normal;
  735. margin-left: 18rpx;
  736. }
  737. }
  738. }
  739. ::v-deep .u-navbar__content.data-v-1194bf80 {
  740. background-color: rgba(0, 0, 0, 0) !important;
  741. }
  742. ::v-deep .u-status-bar.data-v-13f16680 {
  743. background-color: rgba(0, 0, 0, 0) !important;
  744. }
  745. ::v-deep .u-subsection--button.data-v-b14d3440 {
  746. /* padding: 6rpx 34rpx !important; */
  747. border-radius: 64rpx !important;
  748. }
  749. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  750. border-radius: 32rpx !important;
  751. }
  752. </style>