order.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. <template>
  2. <view class="back">
  3. <!-- 地址 -->
  4. <view class="address" @click="toadd">
  5. <view class="u-flex u-row-between">
  6. <view class="add" v-if="addinfo">{{addinfo.full_address}}</view>
  7. <view class="" v-else>请添加您的收货地址</view>
  8. <u-icon name="arrow-right" size='16'></u-icon>
  9. </view>
  10. <view class="info" v-if="addinfo">
  11. <text>{{addinfo.name}}</text>
  12. <text style="margin-left: 20rpx;">{{replacePhoneToStar(addinfo.mobile)}}</text>
  13. </view>
  14. </view>
  15. <!-- 商品 -->
  16. <view class="shop">
  17. <view class="">
  18. <image :src="goodinfo.merchant.image" style="width: 38rpx;height: 38rpx;" mode=""></image>
  19. <text class="name">{{goodinfo.merchant.merchant_name}}</text>
  20. </view>
  21. <view class="u-flex" style="margin-top: 32rpx;">
  22. <image :src="sku_info.image" style="width: 184rpx;height: 184rpx;" mode=""></image>
  23. <view class=" "
  24. style="margin-left: 20rpx;flex-direction: column;justify-content: space-between;height: 184rpx;display: flex;flex:1">
  25. <view class="">
  26. <text>{{goodinfo.name_cn}}</text>
  27. <view class="weight">{{sku_info.item}} </view>
  28. <!-- <view class="">{{Number(sku_info.weight)*value}}kg</view> -->
  29. </view>
  30. <view class="u-flex u-row-between">
  31. <view class="">
  32. <text class="money">¥</text>
  33. <text class="money"
  34. style="font-size: 34rpx;">{{goodinfo.is_discount==1? (Number(sku_info.price*1000)*Number(value*1000))/1000000:(Number(sku_info.discount_price*1000)*Number(value)*1000)/1000000}}</text>
  35. </view>
  36. <u-number-box v-model="value">
  37. <!-- <view class="bu"> -->
  38. <view slot="minus" class="">
  39. <u-icon name="minus" size="12"></u-icon>
  40. </view>
  41. <input slot="input" v-model="value" style="width: 40px;text-align: center;"
  42. class="input"></input>
  43. <view slot="plus" class="">
  44. <u-icon name="plus" size="12"></u-icon>
  45. </view>
  46. <!-- </view> -->
  47. </u-number-box>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. <!-- 物流 -->
  53. <view class="logistics u-flex u-row-between">
  54. <text style="font-weight: 600;">{{i18n.flow}}</text>
  55. <view class="u-flex" @click="show = true">
  56. <text class="change">{{containname1?type1+' | '+containname1 :i18n.selection}}</text>
  57. <u-icon name="arrow-right" size='16'></u-icon>
  58. </view>
  59. </view>
  60. <!-- 推荐 -->
  61. <view class="recommend">
  62. <view class="top">
  63. <image src="static/images/recommend.png" style="width: 124rpx;height: 30rpx;" mode=""></image>
  64. </view>
  65. <view class="bottom">
  66. <scroll-view scroll-x class="u-flex" style="column: gap 28rpx; display: flex;">
  67. <view class="u-flex" style="column-gap: 16rpx; ">
  68. <view class="" v-for="(item,idx) in swiptlist" :key="idx" @click="">
  69. <image :src="item.image" style="width: 156rpx;height: 156rpx;" mode="">
  70. </image>
  71. <view class="title" v-if="language =='zh-CN'">
  72. {{item.name_cn}}
  73. </view>
  74. <view class="title" v-if="language =='en-US'">
  75. {{item.name_en}}
  76. </view>
  77. <view class="title" v-if="language =='es-ES'">
  78. {{item.name_es}}
  79. </view>
  80. <view class="title" v-if="language =='it-IT'">
  81. {{item.name_ita}}
  82. </view>
  83. <view class="money" style="color: #F83224;font-size: 20rpx;">
  84. <text>¥</text>
  85. <text
  86. style="font-size: 28rpx;">{{item.is_discount==0?item.discount_price.slice(0,-3):item.price.slice(0,-3)}}</text>
  87. <text>{{item.is_discount==0?item.discount_price.slice(-3):item.price.slice(-3)}}</text>
  88. </view>
  89. </view>
  90. </view>
  91. </scroll-view>
  92. </view>
  93. </view>
  94. <!-- 商品相关 -->
  95. <view class="abount" style="margin-top: 20rpx;">
  96. <view class="u-flex u-row-between" style='margin-bottom:40rpx'>
  97. <view class="name">{{i18n.Commodityamount}}</view>
  98. <view class="money">
  99. ¥{{goodinfo.is_discount==1? (Number(sku_info.price*100)*Number(value*100))/10000:(Number(sku_info.discount_price*100)*Number(value*100))/10000}}
  100. </view>
  101. </view>
  102. <view class="u-flex u-row-between">
  103. <view class="name">{{i18n.Grosscommodityweight}}</view>
  104. <view class="money">{{Number(sku_info.weight)*value}}kg</view>
  105. </view>
  106. <view class="back u-flex" v-if="containname1">
  107. <image src="static/images/warning.png" style="width: 32rpx;height: 32rpx;" mode=""></image>
  108. <text
  109. style="margin-left: 12rpx;">{{i18n.buy}}{{max_weight}}kg{{i18n.price}}¥{{unit_fee}},{{i18n.morefavorable}}</text>
  110. </view>
  111. <view class="u-flex u-row-between" style='margin-bottom:40rpx;margin-top: 20rpx;'>
  112. <view class="name">{{i18n.Costperkilogram}}</view>
  113. <view class="money">{{containname1?unit_price:'需先选择货运方式'}}</view>
  114. </view>
  115. <view class="u-flex u-row-between">
  116. <view class="name">{{i18n.freight}}</view>
  117. <view class="money">{{containname1?sum:'需先选择货运方式'}}</view>
  118. </view>
  119. <view class="zong u-flex u-row-right">
  120. <view class="">
  121. <text class="small">{{i18n.subtotal}}</text>
  122. <text class="mon">¥</text>
  123. <text class="mon"
  124. style="font-size: 40rpx;">{{goodinfo.is_discount==1? (Number(sku_info.price*100)*Number(value*100))/10000:(Number(sku_info.discount_price*100)*Number(value*100))/10000}}</text>
  125. </view>
  126. </view>
  127. </view>
  128. <view class="" style="height: 166rpx;"></view>
  129. <view class="btn u-flex u-row-right">
  130. <view class="">
  131. <text class="kg">{{i18n.Atotalof}}{{Number(sku_info.weight) * value}}kg,</text>
  132. <text>{{i18n.total}}:</text>
  133. <text class="money" style="font-size: 28rpx;">¥</text>
  134. <text class="money" v-if="goodinfo.is_discount==1"
  135. style="font-weight: bold;">{{(Number(sum*10000+ Number(sku_info.price)*Number(value)*10000))/10000}}</text>
  136. <text class="money" v-if="goodinfo.is_discount==0"
  137. style="font-weight: bold;">{{(Number(sum*10000+ Number(sku_info.discount_price)*Number(value)*10000))/10000}}</text>
  138. </view>
  139. <view class="order" @click="topay">
  140. {{i18n.Submitorder}}
  141. </view>
  142. </view>
  143. <!-- 跨境物流 -->
  144. <u-popup :show="show" @close="close" mode="bottom" closeIconPos='top-right' round='28'>
  145. <view style="padding: 40rpx 28rpx;box-sizing:border-box;">
  146. <view class="u-flex u-row-between">
  147. <view class="" style="width: 28px;height: 28px;"></view>
  148. <view class="poptitle">
  149. {{i18n.flow}}
  150. </view>
  151. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  152. </view>
  153. <view class="u-flex " style="margin-top: 60rpx;flex-wrap: wrap;column-gap: 16rpx;">
  154. <view :class="index==idx?'active':'unactive'" v-for="(item,idx) in containerList"
  155. @click="change(item,idx)"
  156. style="display: flex;flex-direction: column;align-items: center;justify-content: center;margin-bottom: 28rpx;position: relative;">
  157. <image v-if="index==idx" src="static/images/change.png"
  158. style="width: 36rpx;height: 32rpx;position: absolute;top: 0;right: 0;" mode=""></image>
  159. <view class="logname" v-if="language =='zh-CN'">{{item.name_cn}}</view>
  160. <view class="logname" v-if="language =='en-US'">{{item.name_en}}</view>
  161. <view class="logname" v-if="language =='es-ES'">{{item.name_es}}</view>
  162. <view class="logname" v-if="language =='it-IT'">{{item.name_ita}}</view>
  163. <!-- <view class="wei">¥{{goodinfo.cate==0?item.normal_delivery_fee:item.special_delivery_fee}}/kg</view> -->
  164. <view class="wei">¥{{item.unit_price}}/kg</view>
  165. </view>
  166. </view>
  167. <view class="nextto" @click="next">{{i18n.next}}</view>
  168. </view>
  169. </u-popup>
  170. <!-- 跨境物流下一步 -->
  171. <u-popup :safeAreaInsetTop='true' :show="show1" @close="close" mode="bottom" closeIconPos='top-right' round='28'
  172. bgColor='#F4F4F4'>
  173. <view style="padding: 40rpx 28rpx;box-sizing:border-box;position: relative;">
  174. <view class="u-flex u-row-between">
  175. <view class="" style="width: 28px;height: 28px;"></view>
  176. <view class="poptitle">
  177. {{i18n.flow}}
  178. </view>
  179. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  180. </view>
  181. <scroll-view :scroll-y="true" style="500rpx">
  182. <view class="transport" style="margin-top: 32rpx;" @click="activea(item,idx)"
  183. v-for="(item,idx) in containlist" v-if="item.sum !=0">
  184. <view class="u-flex u-row-between">
  185. <text class="yundate">{{i18n.Shipmentdate}} {{item.end_date}}</text>
  186. <image v-if="datechan==idx" src="/pageA/static/images/active.png"
  187. style="width: 36rpx;height: 36rpx;" mode=""></image>
  188. <image v-else src="/pageA/static/images/unactive.png" style="width: 36rpx;height: 36rpx;"
  189. mode=""></image>
  190. </view>
  191. <view class="u-flex u-row-between" style="margin-top: 28rpx;">
  192. <view class="chest">
  193. <text v-if="language =='zh-CN'">{{item.name_cn}}</text>
  194. <text v-if="language =='en-US'">{{item.name_en}}</text>
  195. <text v-if="language =='es-ES'">{{item.name_es}}</text>
  196. <text v-if="language =='it-IT'">{{item.name_ita}}</text>
  197. <text style="margin: 0 16rpx;">|</text>
  198. <text>{{i18n.Estimatedtimeofarrival}}{{item.transport_days}}{{i18n.Workingday}}</text>
  199. </view>
  200. <view class="mone">
  201. <text>¥</text>
  202. <text style="font-size: 32rpx;">{{item.sum}}</text>
  203. </view>
  204. </view>
  205. </view>
  206. </scroll-view>
  207. <view class="" style="height: 166rpx;"></view>
  208. <view class="enbottom u-flex u-row-between">
  209. <view class="cancel" @click="close">{{i18n.Cancel}}</view>
  210. <view class="confirm" @click="confirm">{{i18n.enter}}</view>
  211. </view>
  212. </view>
  213. </u-popup>
  214. </view>
  215. </template>
  216. <script>
  217. export default {
  218. data() {
  219. return {
  220. value: 1,
  221. show: false,
  222. index: '',
  223. show1: false,
  224. datechan: '',
  225. sku_info: {},
  226. goodinfo: {},
  227. swiptlist: [], //推荐列表
  228. language: 'zh-CN',
  229. containerList: [], //列表
  230. province_id: '',
  231. transport_type_id: '',
  232. containlist: [],
  233. containid: '', //货柜id
  234. containname: '', //货柜名称
  235. type: '', //货运方式名称
  236. containname1: '',
  237. type1: '',
  238. sum: '',
  239. unit_price: '',
  240. recommend_weight: '',
  241. sum1: '',
  242. unit_price1: '',
  243. recommend_weight1: '',
  244. max_weight: '',
  245. min_weight: '',
  246. unit_fee: '',
  247. addinfo: '',
  248. huoid: ''
  249. };
  250. },
  251. computed: {
  252. i18n() {
  253. return this.$t('index')
  254. },
  255. },
  256. onLoad(options) {
  257. // url: '/pageA/order?sku=' + this.sku_info + '&value=' + this.value+'&goodinfo='+this.goodinfo
  258. if (options) {
  259. this.value = options.value
  260. this.sku_info = JSON.parse(decodeURIComponent(options.sku));
  261. this.goodinfo = JSON.parse(decodeURIComponent(options.goodinfo))
  262. console.log(this.goodinfo);
  263. console.log(this.sku_info);
  264. }
  265. },
  266. onShow() {
  267. if (uni.getStorageSync('language') != '') {
  268. this.language = uni.getStorageSync('language')
  269. }
  270. this.recommend()
  271. // this.container()
  272. },
  273. methods: {
  274. //正则匹配手机号
  275. replacePhoneToStar: function(phone) {
  276. if (phone) {
  277. return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
  278. }
  279. },
  280. //推荐重量
  281. recommendweight() {
  282. uni.$u.http.get('/api/express-order/recommend-container', {
  283. params: {
  284. container_id: this.containid,
  285. type: this.goodinfo.cate == 0 ? 'normal' : 'special'
  286. }
  287. }).then((res) => {
  288. console.log(res);
  289. this.max_weight = res.max_weight
  290. this.min_weight = res.min_weight
  291. this.unit_fee = res.unit_fee
  292. }).catch(() => {
  293. })
  294. },
  295. //货运类型列表
  296. transport() {
  297. uni.$u.http.get('/api/transport-type', {
  298. params: {
  299. province_id: this.province_id,
  300. }
  301. }).then((res) => {
  302. this.containerList = res
  303. this.transport_type_id = res[0].id
  304. if (this.language == 'zh-CN') {
  305. this.type = res[0].name_cn
  306. }
  307. if (this.language == 'en-US') {
  308. this.type = res[0].name_en
  309. }
  310. if (this.language == 'es-ES') {
  311. this.type = res[0].name_es
  312. }
  313. if (this.language == 'it-IT') {
  314. this.type = res[0].name_ita
  315. }
  316. }).catch(() => {
  317. })
  318. },
  319. //跳转到填写地址
  320. toadd() {
  321. var that = this
  322. uni.navigateTo({
  323. url: '/pageC/addressManagement/addressManagement',
  324. events: {
  325. getadd(res) {
  326. that.addinfo = res
  327. that.province_id = res.province_id
  328. // console.log(res);
  329. that.transport()
  330. }
  331. }
  332. })
  333. },
  334. //货柜列表
  335. container() {
  336. uni.$u.http.get('/api/container-base', {
  337. params: {
  338. is_page: 0,
  339. province_id: this.province_id,
  340. transport_type_id: this.transport_type_id,
  341. weight: Number(this.sku_info.weight) * this.value,
  342. type: this.goodinfo.cate == 0 ? 'normal' : 'special',
  343. length: Number(this.goodinfo.length) * this.value, // 是 String 长
  344. width: this.goodinfo.width, // 是 String 宽
  345. height: this.goodinfo.height, // 是 String 高
  346. }
  347. }).then((res) => {
  348. // this.containlist = res
  349. this.containlist = []
  350. res.forEach((item) => {
  351. if (item.sum != 0) {
  352. this.containlist.push(item)
  353. }
  354. })
  355. this.sum = this.containlist[0].sum
  356. this.unit_price = this.containlist[0].unit_price
  357. this.recommend_weight = this.containlist[0].recommend_weight
  358. this.containid = this.containlist[0].id
  359. if (this.language == 'zh-CN') {
  360. this.containname = this.containlist[0].name_cn
  361. }
  362. if (this.language == 'en-US') {
  363. this.containname = this.containlist[0].name_en
  364. }
  365. if (this.language == 'es-ES') {
  366. this.containname = this.containlist[0].name_es
  367. }
  368. if (this.language == 'it-IT') {
  369. this.containname = this.containlist[0].name_ita
  370. }
  371. }).catch(() => {
  372. })
  373. },
  374. //运费满减
  375. config() {
  376. var that = this
  377. uni.$u.http.get('/api/config', {
  378. params: {
  379. module: 'free_shipping'
  380. }
  381. }).then((res) => {
  382. let goodsum = ''
  383. if (that.goodinfo.is_discount == 1) {
  384. goodsum = Number(that.sku_info.price * 100) * Number(that.value * 100) / 10000
  385. console.log('that.sum', that.sum);
  386. console.log('that.goodsum', goodsum);
  387. if (goodsum > res.free_shipping) {
  388. that.sum = 0;
  389. that.unit_price = 0;
  390. }
  391. } else {
  392. goodsum = Number(that.sku_info.discount_price * 100) * Number(that.value * 100) /10000
  393. if (goodsum > res.free_shipping) {
  394. that.sum = 0
  395. that.unit_price = 0
  396. }
  397. }
  398. }).catch(() => {
  399. })
  400. },
  401. //商品推荐
  402. recommend() {
  403. uni.$u.http.post('/api/goods/recommend', {
  404. keyword: ''
  405. }).then((res) => {
  406. // this.swiptlist = res.reduce((a, b) => {
  407. // let lastIndex = a.length - 1
  408. // if (a[lastIndex].length < 3) {
  409. // a[lastIndex].push(b)
  410. // } else {
  411. // a.push([b])
  412. // }
  413. // return a
  414. // }, [
  415. // []
  416. // ])
  417. this.swiptlist = res
  418. }).catch(() => {
  419. })
  420. },
  421. change(item, index) {
  422. this.transport_type_id = item.id
  423. this.index = index
  424. if (this.language == 'zh-CN') {
  425. this.type = item.name_cn
  426. }
  427. if (this.language == 'en-US') {
  428. this.type = item.name_en
  429. }
  430. if (this.language == 'es-ES') {
  431. this.type = item.name_es
  432. }
  433. if (this.language == 'it-IT') {
  434. this.type = item.name_ita
  435. }
  436. },
  437. next() {
  438. this.show = false
  439. this.show1 = true
  440. this.type1 = this.type
  441. this.container()
  442. },
  443. activea(item, idx) {
  444. this.datechan = idx
  445. this.sum = item.sum
  446. this.unit_price = item.unit_price
  447. this.recommend_weight = item.recommend_weight
  448. this.containid = item.id
  449. if (this.language == 'zh-CN') {
  450. this.containname = item.name_cn
  451. }
  452. if (this.language == 'en-US') {
  453. this.containname = item.name_en
  454. }
  455. if (this.language == 'es-ES') {
  456. this.containname = item.name_es
  457. }
  458. if (this.language == 'it-IT') {
  459. this.containname = item.name_ita
  460. }
  461. },
  462. //确定
  463. confirm() {
  464. this.show1 = false
  465. this.containname1 = this.containname
  466. this.recommendweight()
  467. this.config()
  468. },
  469. // 取消
  470. close() {
  471. this.show = false
  472. this.show1 = false
  473. },
  474. //提交订单
  475. topay() {
  476. uni.$u.http.post('/api/order', {
  477. address_id: this.addinfo.id, //3 是 String 地址ID
  478. goods_id: this.goodinfo.id, //65 是 String 商品id
  479. goods_num: this.value, //2 是 String 商品数量
  480. sku_item_id: this.sku_info.id, //60 是 String 规格id
  481. cart_ids: '', //8,9 是 String 购物车id
  482. remark: '', //备注 是 String 备注
  483. merchant_goods_id: this.goodinfo.merchant_goods_id, //39 是 String 团长商品id
  484. container_id: this.containid, //1 是 String 货柜id
  485. share_merchant_id: '', // 是 String 分享团长id 分享商品的时候传
  486. belong: 0 //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  487. }).then((res) => {
  488. console.log(res);
  489. uni.navigateTo({
  490. // url: '/pageA/payorder?sum=' + (Number(this.sum*10000+ Number(this.sku_info.discount_price)*Number(this.value)*10000))/10000 +'&orderid=' + res.id
  491. url: '/pageA/payorder?orderid=' + res.id + '&sum=' + res.amount
  492. })
  493. }).catch(() => {})
  494. }
  495. }
  496. }
  497. </script>
  498. <style lang="scss" scoped>
  499. ::v-deep .u-status-bar {
  500. height: 0 !important;
  501. }
  502. .confirm {
  503. width: 398rpx;
  504. height: 84rpx;
  505. background: #F83224;
  506. border-radius: 42rpx;
  507. text-align: center;
  508. font-family: PingFangSC, PingFang SC;
  509. font-weight: 500;
  510. font-size: 32rpx;
  511. color: #FFFFFF;
  512. line-height: 84rpx;
  513. text-align: center;
  514. font-style: normal;
  515. }
  516. .cancel {
  517. width: 280rpx;
  518. height: 84rpx;
  519. border-radius: 42rpx;
  520. border: 2rpx solid rgba(151, 151, 151, 0.3);
  521. font-family: PingFangSC, PingFang SC;
  522. font-weight: 400;
  523. font-size: 32rpx;
  524. color: #444444;
  525. line-height: 84rpx;
  526. text-align: center;
  527. font-style: normal;
  528. }
  529. .enbottom {
  530. width: 750rpx;
  531. height: 166rpx;
  532. background: #FFFFFF;
  533. position: absolute;
  534. left: 0rpx;
  535. bottom: 0;
  536. padding: 0 24rpx;
  537. box-sizing: border-box;
  538. }
  539. .mone {
  540. font-family: JDZhengHT, JDZhengHT;
  541. font-weight: 400;
  542. font-size: 26rpx;
  543. color: #F83224;
  544. line-height: 32rpx;
  545. text-align: left;
  546. font-style: normal;
  547. }
  548. .yundate {
  549. font-family: PingFangSC, PingFang SC;
  550. font-weight: 550;
  551. font-size: 32rpx;
  552. color: #333333;
  553. line-height: 44rpx;
  554. text-align: left;
  555. font-style: normal;
  556. }
  557. .chest {
  558. font-family: SFPro, SFPro;
  559. font-weight: 400;
  560. font-size: 24rpx;
  561. color: #555555;
  562. line-height: 28rpx;
  563. text-align: left;
  564. font-style: normal;
  565. }
  566. .act {
  567. width: 702rpx;
  568. height: 164rpx;
  569. background: #FFFFFF;
  570. border-radius: 12rpx;
  571. padding: 24rpx 20rpx;
  572. box-sizing: border-box;
  573. border: 1rpx solid #F83224;
  574. }
  575. .transport {
  576. width: 702rpx;
  577. height: 164rpx;
  578. background: #FFFFFF;
  579. border-radius: 12rpx;
  580. padding: 24rpx 20rpx;
  581. box-sizing: border-box;
  582. }
  583. .nextto {
  584. width: 702rpx;
  585. height: 84rpx;
  586. background: #F83224;
  587. border-radius: 44rpx;
  588. font-family: PingFangSC, PingFang SC;
  589. font-weight: 500;
  590. font-size: 32rpx;
  591. color: #FFFFFF;
  592. line-height: 84rpx;
  593. text-align: center;
  594. font-style: normal;
  595. margin-top: 108rpx;
  596. }
  597. .logname {
  598. font-family: PingFangSC, PingFang SC;
  599. font-weight: 400;
  600. font-size: 28rpx;
  601. color: #333333;
  602. line-height: 40rpx;
  603. text-align: right;
  604. font-style: normal;
  605. overflow: hidden;
  606. width: 220rpx;
  607. white-space: nowrap;
  608. text-overflow: ellipsis;
  609. text-align: center;
  610. }
  611. .wei {
  612. font-family: JDZhengHT, JDZhengHT;
  613. font-weight: 400;
  614. font-size: 32rpx;
  615. color: #F83224;
  616. line-height: 40rpx;
  617. text-align: right;
  618. font-style: normal;
  619. margin-top: 8rpx;
  620. }
  621. .active {
  622. width: 218rpx;
  623. height: 148rpx;
  624. background: rgba(247, 50, 36, 0.05);
  625. border-radius: 8rpx;
  626. border: 1rpx solid #F83224;
  627. }
  628. .unactive {
  629. width: 218rpx;
  630. height: 148rpx;
  631. border-radius: 12rpx;
  632. border: 1rpx solid #C3C3C3;
  633. }
  634. .poptitle {
  635. width: 142rpx;
  636. height: 50rpx;
  637. font-family: PingFangSC, PingFang SC;
  638. font-weight: 600;
  639. font-size: 36rpx;
  640. color: #333333;
  641. text-align: center;
  642. width: 100%;
  643. }
  644. .back {
  645. background: rgba(244, 244, 244, 1);
  646. padding: 20rpx 24rpx;
  647. box-sizing: border-box;
  648. .btn {
  649. width: 750rpx;
  650. height: 166rpx;
  651. background: #FFFFFF;
  652. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  653. position: fixed;
  654. bottom: 0;
  655. left: 0;
  656. padding: 0 24rpx 5rpx 5rpx;
  657. box-sizing: border-box;
  658. .money {
  659. font-family: HarmonyOS_Sans_Medium;
  660. font-size: 48rpx;
  661. color: #F83224;
  662. line-height: 38rpx;
  663. text-align: left;
  664. font-style: normal;
  665. // font-weight: 500;
  666. font-weight: bold;
  667. }
  668. .kg {
  669. font-family: PingFangSC, PingFang SC;
  670. font-weight: 400;
  671. font-size: 24rpx;
  672. color: #333333;
  673. line-height: 34rpx;
  674. text-align: left;
  675. font-style: normal;
  676. }
  677. .order {
  678. width: 232rpx;
  679. height: 80rpx;
  680. background: #F83224;
  681. border-radius: 40rpx;
  682. font-family: PingFangTC, PingFangTC;
  683. font-weight: 500;
  684. font-size: 32rpx;
  685. color: #FFFFFF;
  686. line-height: 80rpx;
  687. text-align: center;
  688. font-style: normal;
  689. margin-left: 20rpx;
  690. }
  691. }
  692. //商品相关
  693. .abount {
  694. padding: 28rpx 24rpx;
  695. box-sizing: border-box;
  696. background: #FFFFFF;
  697. border-radius: 16rpx;
  698. width: 702rpx;
  699. .zong {
  700. width: 654rpx;
  701. padding: 22rpx 0 0 0;
  702. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  703. margin-top: 32rpx;
  704. .small {
  705. font-family: PingFangTC, PingFangTC;
  706. font-weight: 400;
  707. font-size: 24rpx;
  708. color: #444444;
  709. line-height: 34rpx;
  710. text-align: left;
  711. font-style: normal;
  712. }
  713. .mon {
  714. font-family: HarmonyOS_Sans_Medium;
  715. font-size: 28rpx;
  716. color: #F83224;
  717. line-height: 38rpx;
  718. text-align: left;
  719. font-style: normal;
  720. margin-left: 12rpx;
  721. font-weight: bold;
  722. }
  723. }
  724. .back {
  725. background: rgba(244, 244, 244, 1);
  726. padding: 22rpx 16rpx;
  727. box-sizing: border-box;
  728. margin-top: 10rpx;
  729. // margin-bottom: 20rpx;
  730. }
  731. .name {
  732. font-family: PingFangSC, PingFang SC;
  733. font-weight: 400;
  734. font-size: 28rpx;
  735. color: #333333;
  736. line-height: 40rpx;
  737. text-align: left;
  738. font-style: normal;
  739. }
  740. .money {
  741. font-family: HarmonyOS_Sans_Medium;
  742. font-size: 28rpx;
  743. color: #222222;
  744. line-height: 38rpx;
  745. text-align: left;
  746. font-style: normal;
  747. font-weight: 600;
  748. }
  749. }
  750. .recommend {
  751. margin-top: 20rpx;
  752. .title {
  753. font-family: PingFangSC, PingFang SC;
  754. font-weight: 400;
  755. font-size: 22rpx;
  756. color: #222222;
  757. line-height: 32rpx;
  758. text-align: left;
  759. font-style: normal;
  760. width: 148rpx;
  761. height: 64rpx;
  762. overflow: hidden;
  763. text-overflow: ellipsis;
  764. -webkit-line-clamp: 2;
  765. display: -webkit-box;
  766. -webkit-box-orient: vertical;
  767. }
  768. .top {
  769. width: 702rpx;
  770. height: 64rpx;
  771. background: linear-gradient(180deg, #FFE7E3 0%, rgba(255, 255, 255, 1) 100%);
  772. border-radius: 16rpx 16rpx 0 0;
  773. padding: 24rpx 22rpx;
  774. box-sizing: border-box;
  775. }
  776. .bottom {
  777. padding: 0 20rpx 22rpx;
  778. box-sizing: border-box;
  779. background: #fff;
  780. }
  781. }
  782. //物流
  783. .logistics {
  784. width: 702rpx;
  785. height: 96rpx;
  786. background: #FFFFFF;
  787. border-radius: 16rpx;
  788. padding: 28rpx 22rpx;
  789. box-sizing: border-box;
  790. margin-top: 20rpx;
  791. .change {
  792. font-family: PingFangSC, PingFang SC;
  793. font-weight: 400;
  794. font-size: 28rpx;
  795. color: #F83224;
  796. line-height: 40rpx;
  797. text-align: left;
  798. font-style: normal;
  799. margin-right: 8rpx;
  800. }
  801. }
  802. //商城
  803. .shop {
  804. width: 702rpx;
  805. // height: 322rpx;
  806. background: #FFFFFF;
  807. border-radius: 16rpx;
  808. padding: 30rpx 24rpx;
  809. margin-top: 20rpx;
  810. box-sizing: border-box;
  811. .bu {
  812. width: 120rpx;
  813. height: 40rpx;
  814. border-radius: 20rpx;
  815. border: 1rpx solid rgba(151, 151, 151, 0.3);
  816. }
  817. .money {
  818. font-family: HarmonyOS_Sans_Medium;
  819. font-size: 24rpx;
  820. color: #F83224;
  821. line-height: 34rpx;
  822. text-align: left;
  823. font-style: normal;
  824. font-weight: 600;
  825. }
  826. .name {
  827. font-family: PingFangSC, PingFang SC;
  828. font-weight: 400;
  829. font-size: 30rpx;
  830. color: #222222;
  831. line-height: 42rpx;
  832. text-align: left;
  833. font-style: normal;
  834. margin-left: 10rpx;
  835. }
  836. .weight {
  837. font-family: PingFangSC, PingFang SC;
  838. font-weight: 400;
  839. font-size: 24rpx;
  840. color: rgba(34, 34, 34, 0.6);
  841. line-height: 34rpx;
  842. text-align: left;
  843. font-style: normal;
  844. margin-top: 16rpx;
  845. }
  846. }
  847. // 地址
  848. .address {
  849. width: 702rpx;
  850. // height: 182rpx;
  851. background: #FFFFFF;
  852. border-radius: 16rpx;
  853. padding: 32rpx 24rpx;
  854. box-sizing: border-box;
  855. .add {
  856. font-family: SFPro, SFPro;
  857. font-weight: 500;
  858. font-size: 32rpx;
  859. color: #222222;
  860. line-height: 36rpx;
  861. text-align: left;
  862. font-style: normal;
  863. }
  864. .info {
  865. font-family: SFPro, SFPro;
  866. font-weight: 400;
  867. font-size: 24rpx;
  868. color: #555555;
  869. line-height: 28rpx;
  870. text-align: left;
  871. font-style: normal;
  872. margin-top: 20rpx;
  873. }
  874. }
  875. }
  876. .minus {
  877. width: 22px;
  878. height: 22px;
  879. border-width: 1px;
  880. border-color: #E6E6E6;
  881. border-style: solid;
  882. border-top-left-radius: 100px;
  883. border-top-right-radius: 100px;
  884. border-bottom-left-radius: 100px;
  885. border-bottom-right-radius: 100px;
  886. @include flex;
  887. justify-content: center;
  888. align-items: center;
  889. }
  890. .input {
  891. padding: 0 10px;
  892. }
  893. .plus {
  894. width: 22px;
  895. height: 22px;
  896. background-color: #FF0000;
  897. border-radius: 50%;
  898. /* #ifndef APP-NVUE */
  899. display: flex;
  900. /* #endif */
  901. justify-content: center;
  902. align-items: center;
  903. }
  904. </style>