express.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867
  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;" @click="callphone"></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. <button style="background-color: transparent;padding-left: 0 !important;padding-right: 0 !important;margin: 0 !important;" open-type="share" 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. </button>
  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' v-if="item.type=='normal'">{{i18n.Ordinary}}</text>
  182. <text class='bigtitle' v-else>{{i18n.Special}}</text>
  183. <text style="margin: 0 8rpx;">|</text>
  184. <text v-if="language =='zh-CN'" class='bigtitle'>{{item.transportType.name_cn}}</text>
  185. <text v-if="language =='en-US'" class='bigtitle'>{{item.transportType.name_en}}</text>
  186. <text v-if="language =='es-ES'" class='bigtitle'>{{item.transportType.name_es}}</text>
  187. <text v-if="language =='it-IT'" class='bigtitle'>{{item.transportType.name_ita}}</text>
  188. </view>
  189. <view class="mon">
  190. <text class="timeb">{{i18n.price}}</text>
  191. <text>¥</text>
  192. <text v-if="item.price" style="font-size: 32rpx;">{{item.price.slice(0,-3)}}</text>
  193. <text v-if="item.price">{{item.price.slice(-3)}}</text>
  194. </view>
  195. </view>
  196. <view class="" style="margin-top: 34rpx;">
  197. <u-line-progress activeColor='rgba(255, 21, 21, 1)' :percentage="item.progress" height="6"
  198. :showText="false"></u-line-progress>
  199. </view>
  200. <view class="u-flex u-row-between" style="margin-top: 20rpx;">
  201. <view class="u-flex">
  202. <view class="">
  203. <text class='timeb'>{{i18n.already}} </text>
  204. <text class='timeb' style='color:rgba(255, 21, 21, 1)'>{{item.used_weight}}kg</text>
  205. </view>
  206. <text style="margin: 0 8rpx;">|</text>
  207. <view class="">
  208. <text class='timeb'>{{i18n.residue}} </text>
  209. <text class='timeb'
  210. style='color:rgba(255, 21, 21, 1)'>{{item.residual_weight}}kg</text>
  211. </view>
  212. </view>
  213. <view class="">
  214. <text class="timeb">{{i18n.plan}}{{item.progress}}%</text>
  215. </view>
  216. </view>
  217. </view>
  218. </view>
  219. <view class="u-flex u-row-between" style="margin-top: 32rpx;">
  220. <text class="timea">{{i18n.start}}:{{item.begin_date}}/{{i18n.cut}}:{{item.end_date}}</text>
  221. <view class="pinb" @click="toaccount(item)">{{i18n.goparceling}}</view>
  222. </view>
  223. </view>
  224. </view>
  225. <u-popup round='28' :show="logshow" @close="close">
  226. <view class="pop">
  227. <kj-flow :goodstype="this.goodinfo.goodtype" ref="child" :province_id='province_id' @success='success'
  228. @close='logshow=false'></kj-flow>
  229. </view>
  230. </u-popup>
  231. <!-- <u-button @click="show = true">打开</u-button> -->
  232. <view class="" style="height: 160rpx;"></view>
  233. <kj-tabbar :value1=0></kj-tabbar>
  234. </view>
  235. </template>
  236. <script>
  237. export default {
  238. data() {
  239. return {
  240. //顶部分段器
  241. list: [],
  242. current: 0,
  243. type: "error",
  244. percentage: 50, //进度条
  245. logshow: false, //物流选择
  246. status_collection: '', //我的包裹选择值
  247. transit: 0, //发往中转点
  248. receipt: 0, //中转已签收
  249. overseas: 0, //正发往海外
  250. topadd: {}, //新建寄件人
  251. bottomadd: {}, //新建收件人
  252. province_id: '',
  253. leftname: '',
  254. rightname: '',
  255. container_id: '', //货柜列表
  256. language: 'zh-CN',
  257. goodinfo: {}, //物品信息
  258. unit_price: '',
  259. expressList: []
  260. }
  261. },
  262. onLoad(options) {
  263. this.list = [this.i18n.border, this.i18n.shop]
  264. if (options.current) {
  265. this.current = options.current
  266. }
  267. },
  268. onShow() {
  269. this.list[0] = this.i18n.border
  270. this.list[1] = this.i18n.shop
  271. // uni.setNavigationBarTitle({
  272. // title: this.i18n.setup
  273. // })
  274. this.express() //获取包裹数量
  275. if (uni.getStorageSync('language') != '') {
  276. this.language = uni.getStorageSync('language')
  277. }
  278. this.getexpress()
  279. },
  280. computed: {
  281. i18n() {
  282. return this.$t('index')
  283. }
  284. },
  285. methods: {
  286. onShareAppMessage(res) {
  287. if (res.from === 'button') { // 来自页面内分享按钮
  288. console.log(res.target)
  289. }
  290. return {
  291. title: this.i18n.border,
  292. path: '/pages/express/express'
  293. }
  294. },
  295. callphone() {
  296. uni.$u.http.get('/api/config', {
  297. params: {
  298. module: 'basic'
  299. }
  300. }).then((res) => {
  301. console.log(res);
  302. uni.makePhoneCall({
  303. phoneNumber: res.service_mobile
  304. })
  305. }).catch(() => {
  306. })
  307. },
  308. //价格计算
  309. calculate() {
  310. uni.$u.http.get('/api/express-order/calculate', {
  311. params: {
  312. container_id: this.container_id, // 是 String 货柜ID
  313. weight: this.goodinfo.weight, //是 String 重量(kg)
  314. length: this.goodinfo.length, //是 String 长(m)
  315. width: this.goodinfo.width, //是 String 宽(m)
  316. height: this.goodinfo.height, //是 String 高(m)
  317. type: this.goodinfo.goodtype //是 String 商品类型: normal.普通商品,
  318. }
  319. }).then((res) => {
  320. console.log(res);
  321. uni.navigateTo({
  322. url: "/pageB/delivery?goodinfo=" + encodeURIComponent(JSON.stringify(this
  323. .goodinfo)) +
  324. "&topadd=" + encodeURIComponent(JSON.stringify(
  325. this.topadd)) + "&bottom=" + encodeURIComponent(JSON.stringify(this
  326. .bottomadd)) +
  327. '&leftname=' + this
  328. .leftname + "&rightname=" + this.rightname + "&container_id=" + this
  329. .container_id +
  330. "&unit_price=" + this.unit_price + '&all=' + res
  331. })
  332. }).catch(() => {
  333. })
  334. },
  335. //拼包列表
  336. getexpress() {
  337. uni.$u.http.get('/api/express-group-package', {
  338. params: {
  339. is_page: 0,
  340. page: 1,
  341. limit: 3,
  342. transport_type_id: "",
  343. container_base_id: '',
  344. type: '',
  345. }
  346. }).then((res) => {
  347. this.expressList = res
  348. }).catch(() => {
  349. })
  350. },
  351. //跨境物流选择
  352. success(msg) {
  353. this.logshow = false
  354. this.leftname = msg.leftname
  355. this.container_id = msg.dateid
  356. this.rightname = msg.rightname
  357. this.unit_price = msg.unit_price
  358. },
  359. //物流选择
  360. changewu() {
  361. if (this.province_id) {
  362. this.logshow = true
  363. setTimeout(() => {
  364. this.$refs.child.transport();
  365. }, 800)
  366. } else {
  367. this.$u.toast('请先选择城市')
  368. }
  369. },
  370. //改变地址
  371. changeadd() {
  372. var a = {}
  373. a = this.topadd
  374. this.topadd = this.bottomadd
  375. this.bottomadd = a
  376. this.province_id = this.bottomadd.province_id
  377. },
  378. //正则匹配手机号
  379. replacePhoneToStar: function(phone) {
  380. if (phone) {
  381. return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
  382. }
  383. },
  384. //地址薄
  385. addbook(index) {
  386. var that = this
  387. uni.navigateTo({
  388. url: "/pageC/addressManagement/addressManagement?index=" + index,
  389. events: {
  390. getadd(res) {
  391. if (index == 0) {
  392. that.topadd = res
  393. console.log('topadd', that.topadd);
  394. } else {
  395. that.bottomadd = res
  396. console.log('bottom', that.bottomadd);
  397. that.province_id = that.bottomadd.province_id
  398. }
  399. }
  400. }
  401. })
  402. },
  403. //我的包裹
  404. express() {
  405. uni.$u.http.get('/api/express-order/status-count', {}).then((res) => {
  406. console.log(res);
  407. this.overseas = res.to_overseas
  408. this.receipt = res.transit_receipt
  409. this.transit = res.to_transit
  410. }).catch(() => {
  411. })
  412. },
  413. todev() {
  414. if (JSON.stringify(this.topadd) === '{}') {
  415. this.$u.toast('请填写寄件人地址')
  416. } else if (JSON.stringify(this.bottomadd) === '{}') {
  417. this.$u.toast('请填写收件人地址')
  418. } else if (JSON.stringify(this.goodinfo) === '{}') {
  419. this.$u.toast('请填写物品信息')
  420. } else if (this.leftname == '') {
  421. this.$u.toast('请选择物流方式')
  422. } else {
  423. this.calculate()
  424. }
  425. },
  426. count() {
  427. uni.navigateTo({
  428. url: '/pageB/account'
  429. })
  430. },
  431. pack(index) {
  432. uni.navigateTo({
  433. // url: '/pageB/myPackage?index=' + index
  434. url: "/pageC/myPackage/myPackage?type=" + index,
  435. })
  436. },
  437. more() {
  438. uni.navigateTo({
  439. url: '/pageB/list/list'
  440. })
  441. },
  442. //拼包快递
  443. toaccount(info) {
  444. uni.navigateTo({
  445. url: '/pageB/ParcelExpress?expressinfo=' + encodeURIComponent(JSON.stringify(info))
  446. })
  447. },
  448. //物流计算器
  449. counter() {
  450. uni.navigateTo({
  451. url: '/pageA/counter'
  452. })
  453. },
  454. //消息
  455. tochat() {
  456. uni.navigateTo({
  457. url: '/pageA/chat/news'
  458. })
  459. },
  460. //物品信息
  461. goods() {
  462. var that = this
  463. uni.navigateTo({
  464. url: '/pageB/goods',
  465. events: {
  466. goodinfo: function(res) {
  467. that.goodinfo = res
  468. }
  469. }
  470. })
  471. },
  472. //寄件人信息
  473. send() {
  474. uni.navigateTo({
  475. url: '/pageB/Senderinfor'
  476. })
  477. },
  478. recipirnt() {
  479. uni.navigateTo({
  480. url: '/pageB/recipientinfo'
  481. })
  482. },
  483. close() {
  484. this.logshow = false
  485. },
  486. //分段器切换
  487. sectionChange(index) {
  488. this.current = index;
  489. console.log(index);
  490. if (this.current == 1) {
  491. uni.switchTab({
  492. url: '/pages/index/index?current=1'
  493. })
  494. this.current = 0
  495. }
  496. },
  497. toparcel() {
  498. uni.navigateTo({
  499. url: '/pageB/parcel'
  500. })
  501. }
  502. }
  503. }
  504. </script>
  505. <style lang="scss" scoped>
  506. button{
  507. border:0rpx solid rgba(0, 0, 0, 1) !important;
  508. }
  509. page {
  510. background-color: rgba(0, 0, 0, 0)
  511. }
  512. .bao {
  513. font-family: PingFangSC, PingFang SC;
  514. font-weight: 400;
  515. font-size: 26rpx;
  516. color: #222222;
  517. line-height: 36rpx;
  518. text-align: right;
  519. font-style: normal;
  520. }
  521. .goodname {
  522. font-family: SFPro, SFPro;
  523. font-weight: 400;
  524. font-size: 28rpx;
  525. color: #222222;
  526. line-height: 32rpx;
  527. text-align: left;
  528. font-style: normal;
  529. }
  530. .topname {
  531. font-family: PingFangSC, PingFang SC;
  532. font-weight: 500;
  533. font-size: 30rpx;
  534. color: #222222;
  535. line-height: 42rpx;
  536. text-align: left;
  537. font-style: normal;
  538. }
  539. .topaddress {
  540. font-family: PingFangSC, PingFang SC;
  541. font-weight: 400;
  542. font-size: 26rpx;
  543. color: #777777;
  544. line-height: 36rpx;
  545. text-align: left;
  546. font-style: normal;
  547. }
  548. .pop {
  549. font-family: PingFangSC, PingFang SC;
  550. font-weight: 500;
  551. font-size: 36rpx;
  552. color: #333333;
  553. line-height: 50rpx;
  554. text-align: left;
  555. font-style: normal;
  556. padding: 32rpx 28rpx 0 0;
  557. box-sizing: border-box;
  558. }
  559. .mon {
  560. font-family: HarmonyOS_Sans_Medium;
  561. font-size: 20rpx;
  562. color: #F83224;
  563. line-height: 26rpx;
  564. text-align: left;
  565. font-style: normal;
  566. font-weight: 600;
  567. }
  568. .bigtitle {
  569. font-family: PingFangSC, PingFang SC;
  570. font-weight: 600;
  571. font-size: 28rpx;
  572. color: #222222;
  573. line-height: 40rpx;
  574. text-align: left;
  575. font-style: normal;
  576. }
  577. .timeb {
  578. font-family: PingFangSC, PingFang SC;
  579. font-weight: 400;
  580. font-size: 22rpx;
  581. color: #666666;
  582. line-height: 32rpx;
  583. text-align: left;
  584. font-style: normal;
  585. }
  586. .timea {
  587. font-family: PingFangSC, PingFang SC;
  588. font-weight: 400;
  589. font-size: 22rpx;
  590. color: #555555;
  591. line-height: 32rpx;
  592. text-align: left;
  593. font-style: normal;
  594. }
  595. .pinb {
  596. width: 148rpx;
  597. height: 64rpx;
  598. background: #FF1515;
  599. border-radius: 42rpx;
  600. font-family: PingFangSC, PingFang SC;
  601. font-weight: 500;
  602. font-size: 28rpx;
  603. color: #FFFFFF;
  604. line-height: 64rpx;
  605. text-align: center;
  606. font-style: normal;
  607. }
  608. .label {
  609. margin-top: 20rpx;
  610. width: 702rpx;
  611. // height: 288rpx;
  612. background: #FFFFFF;
  613. border-radius: 16rpx;
  614. padding: 32rpx 20rpx;
  615. box-sizing: border-box;
  616. .left {
  617. width: 144rpx;
  618. height: 144rpx;
  619. background: #F5F5F5;
  620. border-radius: 8rpx;
  621. .bourn {
  622. font-family: PingFangSC, PingFang SC;
  623. font-weight: 400;
  624. font-size: 20rpx;
  625. color: #222222;
  626. line-height: 28rpx;
  627. text-align: left;
  628. font-style: normal;
  629. }
  630. .addres {
  631. font-family: PingFangSC, PingFang SC;
  632. font-weight: 500;
  633. font-size: 28rpx;
  634. color: #222222;
  635. line-height: 40rpx;
  636. text-align: left;
  637. font-style: normal;
  638. }
  639. }
  640. }
  641. .flexc {
  642. display: flex;
  643. flex-direction: column;
  644. justify-content: center;
  645. align-items: center;
  646. }
  647. .hai {
  648. font-family: PingFangSC, PingFang SC;
  649. font-weight: 600;
  650. font-size: 32rpx;
  651. color: #222222;
  652. line-height: 44rpx;
  653. text-align: left;
  654. font-style: normal;
  655. margin-right: 10rpx;
  656. }
  657. .more {
  658. font-family: PingFangSC, PingFang SC;
  659. font-weight: 400;
  660. font-size: 24rpx;
  661. color: #F83224;
  662. line-height: 34rpx;
  663. text-align: left;
  664. font-style: normal;
  665. }
  666. .parcel {
  667. width: 702rpx;
  668. // height: 260rpx;
  669. background: #FFFFFF;
  670. border-radius: 16rpx;
  671. margin-top: 20rpx;
  672. padding: 24rpx;
  673. box-sizing: border-box;
  674. .myparcel {
  675. font-family: PingFangSC, PingFang SC;
  676. font-weight: 600;
  677. font-size: 28rpx;
  678. color: #222222;
  679. line-height: 40rpx;
  680. text-align: left;
  681. font-style: normal;
  682. }
  683. .add {
  684. // width: 240rpx;
  685. height: 48rpx;
  686. background: rgba(248, 50, 36, 0.06);
  687. border-radius: 24rpx;
  688. .addtext {
  689. font-family: PingFangSC, PingFang SC;
  690. font-weight: 600;
  691. font-size: 20rpx;
  692. color: #000000;
  693. line-height: 28rpx;
  694. text-align: left;
  695. font-style: normal;
  696. }
  697. }
  698. }
  699. .address {
  700. width: 702rpx;
  701. // height: 776rpx;
  702. background: #FFFFFF;
  703. border-radius: 20rpx;
  704. padding: 48rpx 24rpx 36rpx;
  705. box-sizing: border-box;
  706. margin-top: 38rpx;
  707. .bottom {
  708. padding: 0 76rpx;
  709. box-sizing: border-box;
  710. margin-top: 48rpx;
  711. .friend {
  712. font-family: PingFangSC, PingFang SC;
  713. font-weight: 400;
  714. font-size: 28rpx;
  715. color: #555555;
  716. line-height: 40rpx;
  717. text-align: left;
  718. font-style: normal;
  719. margin-left: 12rpx;
  720. }
  721. }
  722. .mail {
  723. width: 646rpx;
  724. height: 84rpx;
  725. background: #F83224;
  726. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  727. border-radius: 44rpx;
  728. font-family: PingFangSC, PingFang SC;
  729. font-weight: 500;
  730. font-size: 32rpx;
  731. color: #FFFFFF;
  732. line-height: 84rpx;
  733. text-align: center;
  734. font-style: normal;
  735. }
  736. .info {
  737. height: 100rpx;
  738. border-bottom: 2rpx solid rgba(151, 151, 151, 0.08);
  739. .wupin {
  740. font-family: PingFangSC, PingFang SC;
  741. font-weight: 400;
  742. font-size: 28rpx;
  743. color: #333333;
  744. line-height: 40rpx;
  745. text-align: left;
  746. font-style: normal;
  747. }
  748. .change {
  749. font-family: PingFangSC, PingFang SC;
  750. font-weight: 400;
  751. font-size: 28rpx;
  752. color: #666666;
  753. line-height: 40rpx;
  754. text-align: left;
  755. font-style: normal;
  756. }
  757. .mast {
  758. // width: 62rpx;
  759. height: 30rpx;
  760. border-radius: 16rpx;
  761. border: 1rpx solid #F83224;
  762. font-family: PingFangSC, PingFang SC;
  763. font-weight: 400;
  764. font-size: 20rpx;
  765. color: #FF1515;
  766. line-height: 30rpx;
  767. text-align: center;
  768. font-style: normal;
  769. margin-left: 12rpx;
  770. padding: 0 4rpx;
  771. box-sizing: border-box;
  772. }
  773. }
  774. .left {
  775. height: 128rpx;
  776. .pople {
  777. font-family: PingFangSC, PingFang SC;
  778. font-weight: 500;
  779. font-size: 30rpx;
  780. color: #222222;
  781. line-height: 42rpx;
  782. text-align: left;
  783. font-style: normal;
  784. }
  785. .jiadd {
  786. font-family: PingFangSC, PingFang SC;
  787. font-weight: 400;
  788. font-size: 26rpx;
  789. color: #777777;
  790. line-height: 36rpx;
  791. text-align: left;
  792. font-style: normal;
  793. }
  794. .right {
  795. font-family: PingFangSC, PingFang SC;
  796. font-weight: 600;
  797. font-size: 26rpx;
  798. color: #222222;
  799. line-height: 36rpx;
  800. text-align: left;
  801. font-style: normal;
  802. margin-left: 18rpx;
  803. }
  804. }
  805. }
  806. // ::v-deep .u-navbar__content.data-v-1194bf80 {
  807. // background-color: rgba(0, 0, 0, 0) !important;
  808. // }
  809. // ::v-deep .u-status-bar.data-v-13f16680 {
  810. // background-color: rgba(0, 0, 0, 0) !important;
  811. // }
  812. ::v-deep .u-subsection--button.data-v-b14d3440 {
  813. /* padding: 6rpx 34rpx !important; */
  814. border-radius: 64rpx !important;
  815. }
  816. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  817. border-radius: 32rpx !important;
  818. }
  819. </style>