express.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835
  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 bgColor='rgba(255, 215,215, 1)' :placeholder='true' :safeAreaInsetTop="true">
  10. <view class="u-nav-slot" slot="left" style="display: flex;">
  11. <image @click="tochat" src="../../static/images/index/xiaoxi.png" mode=""
  12. style="width: 40rpx;height: 40rpx;">
  13. </image>
  14. <image @click="counter" src="../../static/images/index/compile.png" mode=""
  15. style="width: 40rpx;height: 40rpx;margin-left: 22rpx;"></image>
  16. <image src="../../static/images/index/dianhua.png" mode=""
  17. style="width: 40rpx;height: 40rpx;margin-left: 22rpx;"></image>
  18. </view>
  19. <view class="u-nav-slot" slot="center" style="width: 226rpx;">
  20. <u-subsection bgColor='rgba(248, 50, 36, 0.1)' activeColor='#F83224' inactiveColor='#222'
  21. :list="list" :current="current" @change="sectionChange"></u-subsection>
  22. </view>
  23. </u-navbar>
  24. <!-- 地址 -->
  25. <view class="address">
  26. <view class="left u-flex" style="display: flex;">
  27. <view class="u-row-between left" style="display: flex;flex-direction: column;">
  28. <image src="../../static/express/ji.png" style='width: 40rpx;;height:40rpx ;' mode=""></image>
  29. <image @click="changeadd" src="../../static/express/change.png"
  30. style='width: 40rpx;;height:40rpx ;' mode="">
  31. </image>
  32. </view>
  33. <view class=" u-row-between left"
  34. style="flex: 1;margin-left: 28rpx;border-bottom:2rpx solid rgba(151, 151, 151, 0.08) ;display: flex;">
  35. <view v-if="JSON.stringify(topadd)==='{}'" class="u-row-between " style="" @click="send">
  36. <view class="pople">{{i18n.sender}}</view>
  37. <view class="jiadd" style="margin-top: 14rpx;">{{i18n.informat}}</view>
  38. </view>
  39. <view v-else class="u-row-between " style="" @click="send">
  40. <view class="">
  41. <text class="topname">{{topadd.name}}</text>
  42. <text class="topaddress"
  43. style="margin-left: 8rpx;">{{replacePhoneToStar(topadd.mobile)}}</text>
  44. </view>
  45. <view class="topaddress" style="margin-top: 14rpx;">{{topadd.full_address}}</view>
  46. </view>
  47. <view class="u-flex" @click.stop="addbook(0)">
  48. <view class="" style="color: rgba(151, 151, 151, 1);">|</view>
  49. <text class="right">{{i18n.addressbook}}</text>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="left u-flex"
  54. style="display: flex;margin-top: 26rpx;border-bottom:2rpx solid rgba(151, 151, 151, 0.08)">
  55. <view class="u-row-between left" style="display: flex;flex-direction: column;">
  56. <image src="../../static/express/shou.png" style='width: 40rpx;;height:40rpx ;' mode=""></image>
  57. <!-- <image src="../../static/express/change.png" style='width: 40rpx;;height:40rpx ;' mode=""> -->
  58. </image>
  59. </view>
  60. <view class=" u-row-between left" style="flex: 1;margin-left: 28rpx;display: flex;">
  61. <view v-if="JSON.stringify(bottomadd)==='{}'" class="u-row-between " style=""
  62. @click="recipirnt">
  63. <view class="pople">{{i18n.recipient}}</view>
  64. <view class="jiadd" style="margin-top: 14rpx;">{{i18n.informate}}</view>
  65. </view>
  66. <view v-else class="u-row-between " style="" @click="send">
  67. <view class="">
  68. <text class="topname">{{bottomadd.name}}</text>
  69. <text class="topaddress"
  70. style="margin-left: 8rpx;">{{replacePhoneToStar(bottomadd.mobile)}}</text>
  71. </view>
  72. <view class="topaddress" style="margin-top: 14rpx;">{{bottomadd.full_address}}</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. <!-- 物品信息 -->
  81. <view class="info u-flex u-row-between">
  82. <view class="u-flex">
  83. <text class="wupin">{{i18n.item}}</text>
  84. <view class="mast">{{i18n.required}}</view>
  85. </view>
  86. <view v-if="JSON.stringify(goodinfo)==='{}'" class="u-flex" @click='goods'>
  87. <view class="change">{{i18n.selection}}</view>
  88. <image src="../../static/express/next1.png"
  89. style="width: 28rpx;height: 28rpx;margin-left: 6rpx;" mode=""></image>
  90. </view>
  91. <view v-else class="goodname" @click='goods'>
  92. {{goodinfo.goodname}},{{goodinfo.weight}}kg
  93. </view>
  94. </view>
  95. <!-- 跨境物流 -->
  96. <view class="info u-flex u-row-between">
  97. <view class="u-flex">
  98. <text class="wupin">{{i18n.flow}}</text>
  99. </view>
  100. <view class="u-flex" @click="changewu">
  101. <!-- <text class="change" style="color: rgba(248, 50, 36, 1);">{{i18n.selection}}</text> -->
  102. <text class="change"
  103. style="color: rgba(248, 50, 36, 1);">{{leftname?leftname+' | '+rightname : i18n.selection}}</text>
  104. <image v-if="leftname==''" src="../../static/express/next1.png"
  105. style="width: 28rpx;height: 28rpx;margin-left: 6rpx;" mode=""></image>
  106. </view>
  107. </view>
  108. <!-- 去寄件 -->
  109. <view class="" style="margin-top: 34rpx;">
  110. <view class="mail" @click="todev">
  111. {{i18n.mail}}
  112. </view>
  113. </view>
  114. <view class="bottom u-flex u-row-between">
  115. <view class="u-flex">
  116. <image src="../../static/express/share.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  117. <text class="friend">{{i18n.share}}</text>
  118. </view>
  119. <view class="friend">|</view>
  120. <view class="u-flex" @click="counter">
  121. <image src="/static/images/index/compile.png" style="width: 36rpx;height: 36rpx;" mode="">
  122. </image>
  123. <text class="friend">{{i18n.compute}}</text>
  124. </view>
  125. </view>
  126. </view>
  127. <!-- 我的包裹 -->
  128. <view class="parcel">
  129. <view class="u-flex u-row-between">
  130. <view class="myparcel">
  131. <text>{{i18n.mine}}</text>
  132. <text style="color: rgba(248, 50, 36, 1);">{{i18n.parcel}}</text>
  133. </view>
  134. <view class="add u-flex">
  135. <image src="../../static/express/add.png" mode="" style="width: 44rpx;height: 44rpx;"></image>
  136. <text class="addtext" @click="toparcel">{{i18n.addsign}}</text>
  137. </view>
  138. </view>
  139. <view class="u-flex u-row-around" style="margin-top: 44rpx;">
  140. <view class="flexc" style="position: relative;" @click="pack('to_transit')">
  141. <!-- <view class="" style="position: absolute;top: 0;right: 0;"> -->
  142. <u-badge :absolute='true' :offset="[0,10]" :type="type" max="99" :value="transit"></u-badge>
  143. <!-- </view> -->
  144. <image src="/static/express/address.png" style='width:68rpx;height:68rpx' mode=""></image>
  145. <text style='margin-top:16rpx' class="bao">{{i18n.deliver}}</text>
  146. </view>
  147. <view class="flexc" style="position: relative;" @click="pack('transit_receipt')">
  148. <u-badge :absolute='true' :offset="[0,10]" :type="type" max="99" :value="receipt"></u-badge>
  149. <image src="/static/express/sign.png" style='width:68rpx;height:68rpx' mode=""></image>
  150. <text style='margin-top:16rpx' class="bao">{{i18n.Sign}}</text>
  151. </view>
  152. <view class="flexc" style="position: relative;" @click="pack('to_overseas')">
  153. <u-badge :absolute='true' :offset="[0,10]" :type="type" max="99" :value="overseas"></u-badge>
  154. <image src="../../static/express/send.png" style='width:68rpx;height:68rpx' mode=""></image>
  155. <text style='margin-top:16rpx' class="bao">{{i18n.overseas}}</text>
  156. </view>
  157. </view>
  158. </view>
  159. <!-- 拼包 -->
  160. <view class="u-flex u-row-between" style="margin-top: 32rpx;">
  161. <view class="u-flex">
  162. <text class="hai">{{i18n.parceling}}</text>
  163. <image style="width: 180rpx;height: 32rpx;" src="/static/express/label.png" mode=""></image>
  164. </view>
  165. <view class="u-flex">
  166. <text class="more" @click="more">{{i18n.more}}</text>
  167. <image src="../../static/express/next2.png" style="width: 30rpx;height: 30rpx;" mode=""></image>
  168. </view>
  169. </view>
  170. <!-- 拼包数据 -->
  171. <view class="label" v-for="(item,idx) in expressList" :key="idx">
  172. <view class="" style="display: flex;">
  173. <view class="left flexc">
  174. <text class="bourn">{{i18n.destination}}</text>
  175. <view class="addres">{{item.containerBase.country_name}}</view>
  176. <view class="addres">{{item.containerBase.province_name}}</view>
  177. </view>
  178. <view class="" style="flex: 1;margin-left: 20rpx;">
  179. <view class="u-flex u-row-between">
  180. <view class="">
  181. <text class='bigtitle'>{{item.type_name}}</text>
  182. <text style="margin: 0 8rpx;">|</text>
  183. <text class='bigtitle'>{{item.transportType.name}}</text>
  184. </view>
  185. <view class="mon">
  186. <text class="timeb">{{i18n.price}}</text>
  187. <text>¥</text>
  188. <text v-if="item.price" style="font-size: 32rpx;">{{item.price.slice(0,-3)}}</text>
  189. <text v-if="item.price">{{item.price.slice(-3)}}</text>
  190. </view>
  191. </view>
  192. <view class="" style="margin-top: 34rpx;">
  193. <u-line-progress activeColor='rgba(255, 21, 21, 1)' :percentage="item.progress" height="6"
  194. :showText="false"></u-line-progress>
  195. </view>
  196. <view class="u-flex u-row-between" style="margin-top: 20rpx;">
  197. <view class="u-flex">
  198. <view class="">
  199. <text class='timeb'>{{i18n.already}} </text>
  200. <text class='timeb' style='color:rgba(255, 21, 21, 1)'>{{item.used_weight}}kg</text>
  201. </view>
  202. <text style="margin: 0 8rpx;">|</text>
  203. <view class="">
  204. <text class='timeb'>{{i18n.residue}} </text>
  205. <text class='timeb'
  206. style='color:rgba(255, 21, 21, 1)'>{{item.residual_weight}}kg</text>
  207. </view>
  208. </view>
  209. <view class="">
  210. <text class="timeb">{{i18n.plan}}{{item.progress}}%</text>
  211. </view>
  212. </view>
  213. </view>
  214. </view>
  215. <view class="u-flex u-row-between" style="margin-top: 32rpx;">
  216. <text class="timea">{{i18n.start}}:{{item.begin_date}}/{{i18n.cut}}:{{item.end_date}}</text>
  217. <view class="pinb" @click="toaccount(item)">{{i18n.goparceling}}</view>
  218. </view>
  219. </view>
  220. </view>
  221. <u-popup round='28' :show="logshow" @close="close">
  222. <view class="pop">
  223. <kj-flow :goodstype="this.goodinfo.goodtype" ref="child" :province_id='province_id' @success='success'
  224. @close='logshow=false'></kj-flow>
  225. </view>
  226. </u-popup>
  227. <!-- <u-button @click="show = true">打开</u-button> -->
  228. <view class="" style="height: 160rpx;"></view>
  229. <kj-tabbar :value1=0></kj-tabbar>
  230. </view>
  231. </template>
  232. <script>
  233. export default {
  234. data() {
  235. return {
  236. //顶部分段器
  237. list: [],
  238. current: 0,
  239. type: "error",
  240. percentage: 50, //进度条
  241. logshow: false, //物流选择
  242. status_collection: '', //我的包裹选择值
  243. transit: 0, //发往中转点
  244. receipt: 0, //中转已签收
  245. overseas: 0, //正发往海外
  246. topadd: {}, //新建寄件人
  247. bottomadd: {}, //新建收件人
  248. province_id: '',
  249. leftname: '',
  250. rightname: '',
  251. container_id: '', //货柜列表
  252. language: 'zh-CN',
  253. goodinfo: {}, //物品信息
  254. unit_price: '',
  255. expressList: []
  256. }
  257. },
  258. onLoad(options) {
  259. this.list = [this.i18n.border, this.i18n.shop]
  260. if (options.current) {
  261. this.current = options.current
  262. }
  263. },
  264. onShow() {
  265. this.list[0] = this.i18n.border
  266. this.list[1] = this.i18n.shop
  267. // uni.setNavigationBarTitle({
  268. // title: this.i18n.setup
  269. // })
  270. this.express() //获取包裹数量
  271. if (uni.getStorageSync('language') != '') {
  272. this.language = uni.getStorageSync('language')
  273. }
  274. this.getexpress()
  275. },
  276. computed: {
  277. i18n() {
  278. return this.$t('index')
  279. }
  280. },
  281. methods: {
  282. //价格计算
  283. calculate() {
  284. uni.$u.http.get('/api/express-order/calculate', {
  285. params: {
  286. container_id: this.container_id, // 是 String 货柜ID
  287. weight: this.goodinfo.weight, //是 String 重量(kg)
  288. length: this.goodinfo.length, //是 String 长(m)
  289. width: this.goodinfo.width, //是 String 宽(m)
  290. height: this.goodinfo.height, //是 String 高(m)
  291. type: this.goodinfo.goodtype //是 String 商品类型: normal.普通商品,
  292. }
  293. }).then((res) => {
  294. console.log(res);
  295. uni.navigateTo({
  296. url: "/pageB/delivery?goodinfo=" + encodeURIComponent(JSON.stringify(this
  297. .goodinfo)) +
  298. "&topadd=" + encodeURIComponent(JSON.stringify(
  299. this.topadd)) + "&bottom=" + encodeURIComponent(JSON.stringify(this
  300. .bottomadd)) +
  301. '&leftname=' + this
  302. .leftname + "&rightname=" + this.rightname + "&container_id=" + this
  303. .container_id +
  304. "&unit_price=" + this.unit_price+'&all=' + res
  305. })
  306. }).catch(() => {
  307. })
  308. },
  309. //拼包列表
  310. getexpress() {
  311. uni.$u.http.get('/api/express-group-package', {
  312. params: {
  313. is_page: 0,
  314. page: 1,
  315. limit: 3,
  316. transport_type_id: "",
  317. container_base_id: '',
  318. type: '',
  319. }
  320. }).then((res) => {
  321. this.expressList = res
  322. }).catch(() => {
  323. })
  324. },
  325. //跨境物流选择
  326. success(msg) {
  327. this.logshow = false
  328. this.leftname = msg.leftname
  329. this.container_id = msg.dateid
  330. this.rightname = msg.rightname
  331. this.unit_price = msg.unit_price
  332. },
  333. //物流选择
  334. changewu() {
  335. if (this.province_id) {
  336. this.logshow = true
  337. setTimeout(() => {
  338. this.$refs.child.transport();
  339. }, 800)
  340. } else {
  341. this.$u.toast('请先选择城市')
  342. }
  343. },
  344. //改变地址
  345. changeadd() {
  346. var a = {}
  347. a = this.topadd
  348. this.topadd = this.bottomadd
  349. this.bottomadd = a
  350. this.province_id = this.bottomadd.province_id
  351. },
  352. //正则匹配手机号
  353. replacePhoneToStar: function(phone) {
  354. if (phone) {
  355. return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
  356. }
  357. },
  358. //地址薄
  359. addbook(index) {
  360. var that = this
  361. uni.navigateTo({
  362. url: "/pageC/addressManagement/addressManagement?index=" + index,
  363. events: {
  364. getadd(res) {
  365. if (index == 0) {
  366. that.topadd = res
  367. console.log('topadd', that.topadd);
  368. } else {
  369. that.bottomadd = res
  370. console.log('bottom', that.bottomadd);
  371. that.province_id = that.bottomadd.province_id
  372. }
  373. }
  374. }
  375. })
  376. },
  377. //我的包裹
  378. express() {
  379. uni.$u.http.get('/api/express-order/status-count', {}).then((res) => {
  380. console.log(res);
  381. this.overseas = res.to_overseas
  382. this.receipt = res.transit_receipt
  383. this.transit = res.to_transit
  384. }).catch(() => {
  385. })
  386. },
  387. todev() {
  388. if (JSON.stringify(this.topadd) === '{}') {
  389. this.$u.toast('请填写寄件人地址')
  390. } else if (JSON.stringify(this.bottomadd) === '{}') {
  391. this.$u.toast('请填写收件人地址')
  392. } else if (JSON.stringify(this.goodinfo) === '{}') {
  393. this.$u.toast('请填写物品信息')
  394. } else if (this.leftname == '') {
  395. this.$u.toast('请选择物流方式')
  396. } else {
  397. this.calculate()
  398. }
  399. },
  400. count() {
  401. uni.navigateTo({
  402. url: '/pageB/account'
  403. })
  404. },
  405. pack(index) {
  406. uni.navigateTo({
  407. // url: '/pageB/myPackage?index=' + index
  408. url: "/pageC/myPackage/myPackage?type=" + index,
  409. })
  410. },
  411. more() {
  412. uni.navigateTo({
  413. url: '/pageB/list/list'
  414. })
  415. },
  416. //拼包快递
  417. toaccount(info) {
  418. uni.navigateTo({
  419. url: '/pageB/ParcelExpress?expressinfo=' + encodeURIComponent(JSON.stringify(info))
  420. })
  421. },
  422. //物流计算器
  423. counter() {
  424. uni.navigateTo({
  425. url: '/pageA/counter'
  426. })
  427. },
  428. //消息
  429. tochat() {
  430. uni.navigateTo({
  431. url: '/pageA/chat/news'
  432. })
  433. },
  434. //物品信息
  435. goods() {
  436. var that = this
  437. uni.navigateTo({
  438. url: '/pageB/goods',
  439. events: {
  440. goodinfo: function(res) {
  441. that.goodinfo = res
  442. }
  443. }
  444. })
  445. },
  446. //寄件人信息
  447. send() {
  448. uni.navigateTo({
  449. url: '/pageB/Senderinfor'
  450. })
  451. },
  452. recipirnt() {
  453. uni.navigateTo({
  454. url: '/pageB/recipientinfo'
  455. })
  456. },
  457. close() {
  458. this.logshow = false
  459. },
  460. //分段器切换
  461. sectionChange(index) {
  462. this.current = index;
  463. console.log(index);
  464. if (this.current == 1) {
  465. uni.switchTab({
  466. url: '/pages/index/index?current=1'
  467. })
  468. this.current = 0
  469. }
  470. },
  471. toparcel() {
  472. uni.navigateTo({
  473. url: '/pageB/parcel'
  474. })
  475. }
  476. }
  477. }
  478. </script>
  479. <style lang="scss" scoped>
  480. page {
  481. background-color: rgba(0, 0, 0, 0)
  482. }
  483. .bao {
  484. font-family: PingFangSC, PingFang SC;
  485. font-weight: 400;
  486. font-size: 26rpx;
  487. color: #222222;
  488. line-height: 36rpx;
  489. text-align: right;
  490. font-style: normal;
  491. }
  492. .goodname {
  493. font-family: SFPro, SFPro;
  494. font-weight: 400;
  495. font-size: 28rpx;
  496. color: #222222;
  497. line-height: 32rpx;
  498. text-align: left;
  499. font-style: normal;
  500. }
  501. .topname {
  502. font-family: PingFangSC, PingFang SC;
  503. font-weight: 500;
  504. font-size: 30rpx;
  505. color: #222222;
  506. line-height: 42rpx;
  507. text-align: left;
  508. font-style: normal;
  509. }
  510. .topaddress {
  511. font-family: PingFangSC, PingFang SC;
  512. font-weight: 400;
  513. font-size: 26rpx;
  514. color: #777777;
  515. line-height: 36rpx;
  516. text-align: left;
  517. font-style: normal;
  518. }
  519. .pop {
  520. font-family: PingFangSC, PingFang SC;
  521. font-weight: 500;
  522. font-size: 36rpx;
  523. color: #333333;
  524. line-height: 50rpx;
  525. text-align: left;
  526. font-style: normal;
  527. padding: 32rpx 28rpx 0 0;
  528. box-sizing: border-box;
  529. }
  530. .mon {
  531. font-family: HarmonyOS_Sans_Medium;
  532. font-size: 20rpx;
  533. color: #F83224;
  534. line-height: 26rpx;
  535. text-align: left;
  536. font-style: normal;
  537. font-weight: 600;
  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. .info {
  708. height: 100rpx;
  709. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  710. .wupin {
  711. font-family: PingFangSC, PingFang SC;
  712. font-weight: 400;
  713. font-size: 28rpx;
  714. color: #333333;
  715. line-height: 40rpx;
  716. text-align: left;
  717. font-style: normal;
  718. }
  719. .change {
  720. font-family: PingFangSC, PingFang SC;
  721. font-weight: 400;
  722. font-size: 28rpx;
  723. color: #666666;
  724. line-height: 40rpx;
  725. text-align: left;
  726. font-style: normal;
  727. }
  728. .mast {
  729. // width: 62rpx;
  730. height: 30rpx;
  731. border-radius: 16rpx;
  732. border: 1rpx solid #F83224;
  733. font-family: PingFangSC, PingFang SC;
  734. font-weight: 400;
  735. font-size: 20rpx;
  736. color: #FF1515;
  737. line-height: 30rpx;
  738. text-align: center;
  739. font-style: normal;
  740. margin-left: 12rpx;
  741. padding: 0 4rpx;
  742. box-sizing: border-box;
  743. }
  744. }
  745. .left {
  746. height: 128rpx;
  747. .pople {
  748. font-family: PingFangSC, PingFang SC;
  749. font-weight: 500;
  750. font-size: 30rpx;
  751. color: #222222;
  752. line-height: 42rpx;
  753. text-align: left;
  754. font-style: normal;
  755. }
  756. .jiadd {
  757. font-family: PingFangSC, PingFang SC;
  758. font-weight: 400;
  759. font-size: 26rpx;
  760. color: #777777;
  761. line-height: 36rpx;
  762. text-align: left;
  763. font-style: normal;
  764. }
  765. .right {
  766. font-family: PingFangSC, PingFang SC;
  767. font-weight: 600;
  768. font-size: 26rpx;
  769. color: #222222;
  770. line-height: 36rpx;
  771. text-align: left;
  772. font-style: normal;
  773. margin-left: 18rpx;
  774. }
  775. }
  776. }
  777. // ::v-deep .u-navbar__content.data-v-1194bf80 {
  778. // background-color: rgba(0, 0, 0, 0) !important;
  779. // }
  780. // ::v-deep .u-status-bar.data-v-13f16680 {
  781. // background-color: rgba(0, 0, 0, 0) !important;
  782. // }
  783. ::v-deep .u-subsection--button.data-v-b14d3440 {
  784. /* padding: 6rpx 34rpx !important; */
  785. border-radius: 64rpx !important;
  786. }
  787. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  788. border-radius: 32rpx !important;
  789. }
  790. </style>