order.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990
  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 class="toptitle">{{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="todetail(item.id)">
  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" style="font-size: 32rpx;font-weight: 600;">¥{{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: 48rpx;font-weight: 600;">{{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. todetail(id) {
  275. uni.reLaunch({
  276. url: '/pageA/productdetails?id=' + id
  277. })
  278. },
  279. //正则匹配手机号
  280. replacePhoneToStar: function(phone) {
  281. if (phone) {
  282. return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
  283. }
  284. },
  285. //推荐重量
  286. recommendweight() {
  287. uni.$u.http.get('/api/express-order/recommend-container', {
  288. params: {
  289. container_id: this.containid,
  290. type: this.goodinfo.cate == 0 ? 'normal' : 'special'
  291. }
  292. }).then((res) => {
  293. console.log(res);
  294. this.max_weight = res.max_weight
  295. this.min_weight = res.min_weight
  296. this.unit_fee = res.unit_fee
  297. }).catch(() => {
  298. })
  299. },
  300. //货运类型列表
  301. transport() {
  302. uni.$u.http.get('/api/transport-type', {
  303. params: {
  304. province_id: this.province_id,
  305. }
  306. }).then((res) => {
  307. this.containerList = res
  308. this.transport_type_id = res[0].id
  309. if (this.language == 'zh-CN') {
  310. this.type = res[0].name_cn
  311. }
  312. if (this.language == 'en-US') {
  313. this.type = res[0].name_en
  314. }
  315. if (this.language == 'es-ES') {
  316. this.type = res[0].name_es
  317. }
  318. if (this.language == 'it-IT') {
  319. this.type = res[0].name_ita
  320. }
  321. }).catch(() => {
  322. })
  323. },
  324. //跳转到填写地址
  325. toadd() {
  326. var that = this
  327. uni.navigateTo({
  328. url: '/pageC/addressManagement/addressManagement?tabs='+ Number(0),
  329. events: {
  330. getadd(res) {
  331. that.addinfo = res
  332. that.province_id = res.province_id
  333. // console.log(res);
  334. that.transport()
  335. }
  336. }
  337. })
  338. },
  339. //货柜列表
  340. container() {
  341. uni.$u.http.get('/api/container-base', {
  342. params: {
  343. is_page: 0,
  344. province_id: this.province_id,
  345. transport_type_id: this.transport_type_id,
  346. weight: Number(this.sku_info.weight) * this.value,
  347. type: this.goodinfo.cate == 0 ? 'normal' : 'special',
  348. length: Number(this.goodinfo.length) * this.value, // 是 String 长
  349. width: this.goodinfo.width, // 是 String 宽
  350. height: this.goodinfo.height, // 是 String 高
  351. }
  352. }).then((res) => {
  353. console.log(res);
  354. this.containlist = res
  355. // this.containlist = []
  356. // res.forEach((item) => {
  357. // // if (item.sum != 0) {
  358. // this.containlist.push(item)
  359. // // }
  360. // })
  361. // this.sum = this.containlist[0].sum
  362. // this.unit_price = this.containlist[0].unit_price
  363. if(this.goodinfo.is_shipping==0){
  364. this.sum = 0
  365. }else{
  366. this.sum = this.containlist[0].sum
  367. }
  368. if(this.goodinfo.is_shipping==0){
  369. this.unit_price = 0
  370. }else{
  371. this.unit_price = this.containlist[0].unit_price
  372. }
  373. this.recommend_weight = this.containlist[0].recommend_weight
  374. this.containid = this.containlist[0].id
  375. if (this.language == 'zh-CN') {
  376. this.containname = this.containlist[0].name_cn
  377. }
  378. if (this.language == 'en-US') {
  379. this.containname = this.containlist[0].name_en
  380. }
  381. if (this.language == 'es-ES') {
  382. this.containname = this.containlist[0].name_es
  383. }
  384. if (this.language == 'it-IT') {
  385. this.containname = this.containlist[0].name_ita
  386. }
  387. }).catch(() => {
  388. })
  389. },
  390. //运费满减
  391. config() {
  392. var that = this
  393. uni.$u.http.get('/api/config', {
  394. params: {
  395. module: 'free_shipping'
  396. }
  397. }).then((res) => {
  398. let goodsum = ''
  399. if (that.goodinfo.is_discount == 1) {
  400. goodsum = Number(that.sku_info.price * 100) * Number(that.value * 100) / 10000
  401. console.log('that.sum', that.sum);
  402. console.log('that.goodsum', goodsum);
  403. if (goodsum > res.free_shipping) {
  404. that.sum = 0;
  405. that.unit_price = 0;
  406. }
  407. } else {
  408. goodsum = Number(that.sku_info.discount_price * 100) * Number(that.value * 100) / 10000
  409. if (goodsum > res.free_shipping) {
  410. that.sum = 0
  411. that.unit_price = 0
  412. }
  413. }
  414. }).catch(() => {
  415. })
  416. },
  417. //商品推荐
  418. recommend() {
  419. uni.$u.http.post('/api/goods/recommend', {
  420. keyword: ''
  421. }).then((res) => {
  422. // this.swiptlist = res.reduce((a, b) => {
  423. // let lastIndex = a.length - 1
  424. // if (a[lastIndex].length < 3) {
  425. // a[lastIndex].push(b)
  426. // } else {
  427. // a.push([b])
  428. // }
  429. // return a
  430. // }, [
  431. // []
  432. // ])
  433. this.swiptlist = res
  434. }).catch(() => {
  435. })
  436. },
  437. change(item, index) {
  438. this.transport_type_id = item.id
  439. this.index = index
  440. if (this.language == 'zh-CN') {
  441. this.type = item.name_cn
  442. }
  443. if (this.language == 'en-US') {
  444. this.type = item.name_en
  445. }
  446. if (this.language == 'es-ES') {
  447. this.type = item.name_es
  448. }
  449. if (this.language == 'it-IT') {
  450. this.type = item.name_ita
  451. }
  452. },
  453. next() {
  454. this.show = false
  455. this.show1 = true
  456. this.type1 = this.type
  457. this.container()
  458. },
  459. activea(item, idx) {
  460. this.datechan = idx
  461. this.sum = item.sum
  462. this.unit_price = item.unit_price
  463. this.recommend_weight = item.recommend_weight
  464. this.containid = item.id
  465. if (this.language == 'zh-CN') {
  466. this.containname = item.name_cn
  467. }
  468. if (this.language == 'en-US') {
  469. this.containname = item.name_en
  470. }
  471. if (this.language == 'es-ES') {
  472. this.containname = item.name_es
  473. }
  474. if (this.language == 'it-IT') {
  475. this.containname = item.name_ita
  476. }
  477. },
  478. //确定
  479. confirm() {
  480. this.show1 = false
  481. this.containname1 = this.containname
  482. this.recommendweight()
  483. this.config()
  484. },
  485. // 取消
  486. close() {
  487. this.show = false
  488. this.show1 = false
  489. },
  490. //提交订单
  491. topay() {
  492. uni.$u.http.post('/api/order', {
  493. address_id: this.addinfo.id, //3 是 String 地址ID
  494. goods_id: this.goodinfo.id, //65 是 String 商品id
  495. goods_num: this.value, //2 是 String 商品数量
  496. sku_item_id: this.sku_info.id, //60 是 String 规格id
  497. cart_ids: '', //8,9 是 String 购物车id
  498. remark: '', //备注 是 String 备注
  499. merchant_goods_id: this.goodinfo.merchant_goods_id, //39 是 String 团长商品id
  500. container_id: this.containid, //1 是 String 货柜id
  501. share_merchant_id: '', // 是 String 分享团长id 分享商品的时候传
  502. belong: 0 //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  503. }).then((res) => {
  504. console.log(res);
  505. uni.navigateTo({
  506. // url: '/pageA/payorder?sum=' + (Number(this.sum*10000+ Number(this.sku_info.discount_price)*Number(this.value)*10000))/10000 +'&orderid=' + res.id
  507. url: '/pageA/payorder?orderid=' + res.id + '&sum=' + res.amount
  508. })
  509. }).catch(() => {})
  510. }
  511. }
  512. }
  513. </script>
  514. <style lang="scss" scoped>
  515. .toptitle {
  516. font-family: PingFangSC, PingFang SC;
  517. font-weight: 400;
  518. // font-size: 22rpx;
  519. color: #222222;
  520. line-height: 32rpx;
  521. text-align: left;
  522. font-style: normal;
  523. // width: 148rpx;
  524. width: 100%;
  525. overflow: hidden;
  526. text-overflow: ellipsis;
  527. -webkit-line-clamp: 1;
  528. display: -webkit-box;
  529. -webkit-box-orient: vertical;
  530. word-break: break-all;
  531. }
  532. ::v-deep .u-status-bar {
  533. height: 0 !important;
  534. }
  535. .confirm {
  536. width: 398rpx;
  537. height: 84rpx;
  538. background: #F83224;
  539. border-radius: 42rpx;
  540. text-align: center;
  541. font-family: PingFangSC, PingFang SC;
  542. font-weight: 500;
  543. font-size: 32rpx;
  544. color: #FFFFFF;
  545. line-height: 84rpx;
  546. text-align: center;
  547. font-style: normal;
  548. }
  549. .cancel {
  550. width: 280rpx;
  551. height: 84rpx;
  552. border-radius: 42rpx;
  553. border: 2rpx solid rgba(151, 151, 151, 0.3);
  554. font-family: PingFangSC, PingFang SC;
  555. font-weight: 400;
  556. font-size: 32rpx;
  557. color: #444444;
  558. line-height: 84rpx;
  559. text-align: center;
  560. font-style: normal;
  561. }
  562. .enbottom {
  563. width: 750rpx;
  564. height: 166rpx;
  565. background: #FFFFFF;
  566. position: absolute;
  567. left: 0rpx;
  568. bottom: 0;
  569. padding: 0 24rpx;
  570. box-sizing: border-box;
  571. }
  572. .mone {
  573. font-family: JDZhengHT, JDZhengHT;
  574. font-weight: 400;
  575. font-size: 26rpx;
  576. color: #F83224;
  577. line-height: 32rpx;
  578. text-align: left;
  579. font-style: normal;
  580. }
  581. .yundate {
  582. font-family: PingFangSC, PingFang SC;
  583. font-weight: 550;
  584. font-size: 32rpx;
  585. color: #333333;
  586. line-height: 44rpx;
  587. text-align: left;
  588. font-style: normal;
  589. }
  590. .chest {
  591. font-family: SFPro, SFPro;
  592. font-weight: 400;
  593. font-size: 24rpx;
  594. color: #555555;
  595. line-height: 28rpx;
  596. text-align: left;
  597. font-style: normal;
  598. }
  599. .act {
  600. width: 702rpx;
  601. height: 164rpx;
  602. background: #FFFFFF;
  603. border-radius: 12rpx;
  604. padding: 24rpx 20rpx;
  605. box-sizing: border-box;
  606. border: 1rpx solid #F83224;
  607. }
  608. .transport {
  609. width: 702rpx;
  610. height: 164rpx;
  611. background: #FFFFFF;
  612. border-radius: 12rpx;
  613. padding: 24rpx 20rpx;
  614. box-sizing: border-box;
  615. }
  616. .nextto {
  617. width: 702rpx;
  618. height: 84rpx;
  619. background: #F83224;
  620. border-radius: 44rpx;
  621. font-family: PingFangSC, PingFang SC;
  622. font-weight: 500;
  623. font-size: 32rpx;
  624. color: #FFFFFF;
  625. line-height: 84rpx;
  626. text-align: center;
  627. font-style: normal;
  628. margin-top: 108rpx;
  629. }
  630. .logname {
  631. font-family: PingFangSC, PingFang SC;
  632. font-weight: 400;
  633. font-size: 28rpx;
  634. color: #333333;
  635. line-height: 40rpx;
  636. text-align: right;
  637. font-style: normal;
  638. overflow: hidden;
  639. width: 220rpx;
  640. white-space: nowrap;
  641. text-overflow: ellipsis;
  642. text-align: center;
  643. word-break: break-all;
  644. }
  645. .wei {
  646. font-family: JDZhengHT, JDZhengHT;
  647. font-weight: 400;
  648. font-size: 32rpx;
  649. color: #F83224;
  650. line-height: 40rpx;
  651. text-align: right;
  652. font-style: normal;
  653. margin-top: 8rpx;
  654. }
  655. .active {
  656. width: 218rpx;
  657. height: 148rpx;
  658. background: rgba(247, 50, 36, 0.05);
  659. border-radius: 8rpx;
  660. border: 1rpx solid #F83224;
  661. }
  662. .unactive {
  663. width: 218rpx;
  664. height: 148rpx;
  665. border-radius: 12rpx;
  666. border: 1rpx solid #C3C3C3;
  667. }
  668. .poptitle {
  669. width: 142rpx;
  670. height: 50rpx;
  671. font-family: PingFangSC, PingFang SC;
  672. font-weight: 600;
  673. font-size: 36rpx;
  674. color: #333333;
  675. text-align: center;
  676. width: 100%;
  677. }
  678. .back {
  679. background: rgba(244, 244, 244, 1);
  680. padding: 20rpx 24rpx;
  681. box-sizing: border-box;
  682. .btn {
  683. width: 750rpx;
  684. height: 166rpx;
  685. background: #FFFFFF;
  686. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  687. position: fixed;
  688. bottom: 0;
  689. left: 0;
  690. padding: 0 24rpx 5rpx 5rpx;
  691. box-sizing: border-box;
  692. .money {
  693. font-family: HarmonyOS_Sans_Medium;
  694. font-size: 48rpx;
  695. color: #F83224;
  696. line-height: 38rpx;
  697. text-align: left;
  698. font-style: normal;
  699. // font-weight: 500;
  700. font-weight: bold;
  701. }
  702. .kg {
  703. font-family: PingFangSC, PingFang SC;
  704. font-weight: 400;
  705. font-size: 24rpx;
  706. color: #333333;
  707. line-height: 34rpx;
  708. text-align: left;
  709. font-style: normal;
  710. }
  711. .order {
  712. width: 232rpx;
  713. height: 80rpx;
  714. background: #F83224;
  715. border-radius: 40rpx;
  716. font-family: PingFangTC, PingFangTC;
  717. font-weight: 500;
  718. font-size: 32rpx;
  719. color: #FFFFFF;
  720. line-height: 80rpx;
  721. text-align: center;
  722. font-style: normal;
  723. margin-left: 20rpx;
  724. }
  725. }
  726. //商品相关
  727. .abount {
  728. padding: 28rpx 24rpx;
  729. box-sizing: border-box;
  730. background: #FFFFFF;
  731. border-radius: 16rpx;
  732. width: 702rpx;
  733. .zong {
  734. width: 654rpx;
  735. padding: 22rpx 0 0 0;
  736. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  737. margin-top: 32rpx;
  738. .small {
  739. font-family: PingFangTC, PingFangTC;
  740. font-weight: 400;
  741. font-size: 24rpx;
  742. color: #444444;
  743. line-height: 34rpx;
  744. text-align: left;
  745. font-style: normal;
  746. }
  747. .mon {
  748. font-family: HarmonyOS_Sans_Medium;
  749. font-size: 28rpx;
  750. color: #F83224;
  751. line-height: 38rpx;
  752. text-align: left;
  753. font-style: normal;
  754. margin-left: 12rpx;
  755. font-weight: bold;
  756. }
  757. }
  758. .back {
  759. background: rgba(244, 244, 244, 1);
  760. padding: 22rpx 16rpx;
  761. box-sizing: border-box;
  762. margin-top: 10rpx;
  763. // margin-bottom: 20rpx;
  764. }
  765. .name {
  766. font-family: PingFangSC, PingFang SC;
  767. font-weight: 400;
  768. font-size: 28rpx;
  769. color: #333333;
  770. line-height: 40rpx;
  771. text-align: left;
  772. font-style: normal;
  773. }
  774. .money {
  775. font-family: HarmonyOS_Sans_Medium;
  776. font-size: 28rpx;
  777. color: #222222;
  778. line-height: 38rpx;
  779. text-align: left;
  780. font-style: normal;
  781. font-weight: 600;
  782. }
  783. }
  784. .recommend {
  785. margin-top: 20rpx;
  786. .title {
  787. font-family: PingFangSC, PingFang SC;
  788. font-weight: 400;
  789. font-size: 22rpx;
  790. color: #222222;
  791. line-height: 32rpx;
  792. text-align: left;
  793. font-style: normal;
  794. width: 148rpx;
  795. height: 64rpx;
  796. overflow: hidden;
  797. text-overflow: ellipsis;
  798. -webkit-line-clamp: 2;
  799. display: -webkit-box;
  800. -webkit-box-orient: vertical;
  801. word-break: break-all;
  802. }
  803. .top {
  804. width: 702rpx;
  805. height: 64rpx;
  806. background: linear-gradient(180deg, #FFE7E3 0%, rgba(255, 255, 255, 1) 100%);
  807. border-radius: 16rpx 16rpx 0 0;
  808. padding: 24rpx 22rpx;
  809. box-sizing: border-box;
  810. }
  811. .bottom {
  812. padding: 0 20rpx 22rpx;
  813. box-sizing: border-box;
  814. background: #fff;
  815. }
  816. }
  817. //物流
  818. .logistics {
  819. width: 702rpx;
  820. height: 96rpx;
  821. background: #FFFFFF;
  822. border-radius: 16rpx;
  823. padding: 28rpx 22rpx;
  824. box-sizing: border-box;
  825. margin-top: 20rpx;
  826. .change {
  827. font-family: PingFangSC, PingFang SC;
  828. font-weight: 400;
  829. font-size: 28rpx;
  830. color: #F83224;
  831. line-height: 40rpx;
  832. text-align: left;
  833. font-style: normal;
  834. margin-right: 8rpx;
  835. }
  836. }
  837. //商城
  838. .shop {
  839. width: 702rpx;
  840. // height: 322rpx;
  841. background: #FFFFFF;
  842. border-radius: 16rpx;
  843. padding: 30rpx 24rpx;
  844. margin-top: 20rpx;
  845. box-sizing: border-box;
  846. .bu {
  847. width: 120rpx;
  848. height: 40rpx;
  849. border-radius: 20rpx;
  850. border: 1rpx solid rgba(151, 151, 151, 0.3);
  851. }
  852. .money {
  853. font-family: HarmonyOS_Sans_Medium;
  854. font-size: 24rpx;
  855. color: #F83224;
  856. line-height: 34rpx;
  857. text-align: left;
  858. font-style: normal;
  859. font-weight: 600;
  860. }
  861. .name {
  862. font-family: PingFangSC, PingFang SC;
  863. font-weight: 400;
  864. font-size: 30rpx;
  865. color: #222222;
  866. line-height: 42rpx;
  867. text-align: left;
  868. font-style: normal;
  869. margin-left: 10rpx;
  870. }
  871. .weight {
  872. font-family: PingFangSC, PingFang SC;
  873. font-weight: 400;
  874. font-size: 24rpx;
  875. color: rgba(34, 34, 34, 0.6);
  876. line-height: 34rpx;
  877. text-align: left;
  878. font-style: normal;
  879. margin-top: 16rpx;
  880. }
  881. }
  882. // 地址
  883. .address {
  884. width: 702rpx;
  885. // height: 182rpx;
  886. background: #FFFFFF;
  887. border-radius: 16rpx;
  888. padding: 32rpx 24rpx;
  889. box-sizing: border-box;
  890. .add {
  891. font-family: SFPro, SFPro;
  892. font-weight: 500;
  893. font-size: 32rpx;
  894. color: #222222;
  895. line-height: 36rpx;
  896. text-align: left;
  897. font-style: normal;
  898. }
  899. .info {
  900. font-family: SFPro, SFPro;
  901. font-weight: 400;
  902. font-size: 24rpx;
  903. color: #555555;
  904. line-height: 28rpx;
  905. text-align: left;
  906. font-style: normal;
  907. margin-top: 20rpx;
  908. }
  909. }
  910. }
  911. .minus {
  912. width: 22px;
  913. height: 22px;
  914. border-width: 1px;
  915. border-color: #E6E6E6;
  916. border-style: solid;
  917. border-top-left-radius: 100px;
  918. border-top-right-radius: 100px;
  919. border-bottom-left-radius: 100px;
  920. border-bottom-right-radius: 100px;
  921. @include flex;
  922. justify-content: center;
  923. align-items: center;
  924. }
  925. .input {
  926. padding: 0 10px;
  927. }
  928. .plus {
  929. width: 22px;
  930. height: 22px;
  931. background-color: #FF0000;
  932. border-radius: 50%;
  933. /* #ifndef APP-NVUE */
  934. display: flex;
  935. /* #endif */
  936. justify-content: center;
  937. align-items: center;
  938. }
  939. </style>