order.vue 24 KB

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