order.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749
  1. <template>
  2. <view class="back">
  3. <!-- 地址 -->
  4. <view class="address">
  5. <view class="u-flex u-row-between">
  6. <view class="add">102 Huangjiao Road,</view>
  7. <u-icon name="arrow-right" size='16'></u-icon>
  8. </view>
  9. <view class="info">
  10. <text>Curtis Morris</text>
  11. <text style="margin-left: 20rpx;">041***8314</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)*Number(value):Number(sku_info.discount_price)*Number(value)}}</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. <text slot="input" style="width: 40px;text-align: center;" class="input">{{value}}</text>
  40. <view slot="plus" class="">
  41. <u-icon name="plus" size="12"></u-icon>
  42. </view>
  43. <!-- </view> -->
  44. </u-number-box>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- 物流 -->
  50. <view class="logistics u-flex u-row-between">
  51. <text style="font-weight: 600;">{{i18n.flow}}</text>
  52. <view class="u-flex" @click="show = true">
  53. <text class="change">{{i18n.selection}}</text>
  54. <u-icon name="arrow-right" size='16'></u-icon>
  55. </view>
  56. </view>
  57. <!-- 推荐 -->
  58. <view class="recommend">
  59. <view class="top">
  60. <image src="static/images/recommend.png" style="width: 124rpx;height: 30rpx;" mode=""></image>
  61. </view>
  62. <view class="bottom">
  63. <scroll-view scroll-x class="u-flex" style="column: gap 28rpx; display: flex;">
  64. <view class="u-flex">
  65. <view class="" v-for="(item,idx) in swiptlist" :key="idx">
  66. <image :src="item.image" style="width: 156rpx;height: 156rpx;" mode="">
  67. </image>
  68. <view class="title" v-if="language =='zh-CN'">
  69. {{item.name_cn}}
  70. </view>
  71. <view class="title" v-if="language =='en-US'">
  72. {{item.name_en}}
  73. </view>
  74. <view class="title" v-if="language =='es-ES'">
  75. {{item.name_es}}
  76. </view>
  77. <view class="title" v-if="language =='it-IT'">
  78. {{item.name_ita}}
  79. </view>
  80. <view class="money" style="color: #F83224;font-size: 20rpx;">
  81. <text>¥</text>
  82. <text style="font-size: 28rpx;">{{item.is_discount==0?item.discount_price.slice(0,-3):item.price.slice(0,-3)}}</text>
  83. <text>{{item.is_discount==0?item.discount_price.slice(-3):item.price.slice(-3)}}</text>
  84. </view>
  85. </view>
  86. </view>
  87. </scroll-view>
  88. </view>
  89. </view>
  90. <!-- 商品相关 -->
  91. <view class="abount" style="margin-top: 20rpx;">
  92. <view class="u-flex u-row-between" style='margin-bottom:40rpx'>
  93. <view class="name">{{i18n.Commodityamount}}</view>
  94. <view class="money">
  95. ¥{{goodinfo.is_discount==1? Number(sku_info.price)*Number(value):Number(sku_info.discount_price)*Number(value)}}
  96. </view>
  97. </view>
  98. <view class="u-flex u-row-between">
  99. <view class="name">{{i18n.Grosscommodityweight}}</view>
  100. <view class="money">{{Number(sku_info.weight)*value}}kg</view>
  101. </view>
  102. <view class="back u-flex">
  103. <image src="static/images/warning.png" style="width: 32rpx;height: 32rpx;" mode=""></image>
  104. <text style="margin-left: 12rpx;">{{i18n.buy}}378-380kg{{i18n.price}}¥21,{{i18n.morefavorable}}</text>
  105. </view>
  106. <view class="u-flex u-row-between" style='margin-bottom:40rpx'>
  107. <view class="name">{{i18n.Costperkilogram}}</view>
  108. <view class="money">需先选择货运方式</view>
  109. </view>
  110. <view class="u-flex u-row-between">
  111. <view class="name">{{i18n.freight}}</view>
  112. <view class="money">需先选择货运方式</view>
  113. </view>
  114. <view class="zong u-flex u-row-right">
  115. <view class="">
  116. <text class="small">{{i18n.subtotal}}</text>
  117. <text class="mon">¥</text>
  118. <text class="mon" style="font-size: 40rpx;">2642.5</text>
  119. </view>
  120. </view>
  121. </view>
  122. <view class="" style="height: 166rpx;"></view>
  123. <view class="btn u-flex u-row-right">
  124. <view class="">
  125. <text class="kg">{{i18n.Atotalof}}39kg,</text>
  126. <text>{{i18n.total}}:</text>
  127. <text class="money" style="font-size: 28rpx;">¥</text>
  128. <text class="money" style="font-weight: bold;">2792.5</text>
  129. </view>
  130. <view class="order" @click="topay">
  131. {{i18n.Submitorder}}
  132. </view>
  133. </view>
  134. <!-- 跨境物流 -->
  135. <u-popup :show="show" @close="close" @open="open" mode="bottom" closeIconPos='top-right' round='28'>
  136. <view style="padding: 40rpx 28rpx;box-sizing:border-box;">
  137. <view class="u-flex u-row-between">
  138. <view class="" style="width: 28px;height: 28px;"></view>
  139. <view class="poptitle">
  140. {{i18n.flow}}
  141. </view>
  142. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  143. </view>
  144. <view class="u-flex u-row-between" style="margin-top: 60rpx;flex-wrap: wrap;">
  145. <view :class="index==idx?'active':'unactive'" v-for="(item,idx) in containerList"
  146. @click="change(idx)"
  147. style="display: flex;flex-direction: column;align-items: center;justify-content: center;margin-bottom: 28rpx;position: relative;">
  148. <image v-if="index==idx" src="static/images/change.png"
  149. style="width: 36rpx;height: 32rpx;position: absolute;top: 0;right: 0;" mode=""></image>
  150. <view class="logname" v-if="language =='zh-CN'">{{item.name_cn}}</view>
  151. <view class="logname" v-if="language =='en-US'">{{item.name_en}}</view>
  152. <view class="logname" v-if="language =='es-ES'">{{item.name_es}}</view>
  153. <view class="logname" v-if="language =='it-IT'">{{item.name_ita}}</view>
  154. <view class="wei">¥{{goodinfo.cate==0?item.normal_delivery_fee:item.special_delivery_fee}}/kg</view>
  155. </view>
  156. </view>
  157. <view class="nextto" @click="next">{{i18n.next}}</view>
  158. </view>
  159. </u-popup>
  160. <!-- 跨境物流下一步 -->
  161. <u-popup :safeAreaInsetTop='true' :show="show1" @close="close" @open="open" mode="bottom"
  162. closeIconPos='top-right' round='28' bgColor='#F4F4F4'>
  163. <view style="padding: 40rpx 28rpx;box-sizing:border-box;position: relative;">
  164. <view class="u-flex u-row-between">
  165. <view class="" style="width: 28px;height: 28px;"></view>
  166. <view class="poptitle">
  167. {{i18n.flow}}
  168. </view>
  169. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  170. </view>
  171. <scroll-view :scroll-y="true" style="500rpx">
  172. <view class="transport" style="margin-top: 32rpx;" @click="activea(idx)" v-for="(item,idx) in 5">
  173. <view class="u-flex u-row-between">
  174. <text class="yundate">{{i18n.Shipmentdate}} 2023-12-09</text>
  175. <image v-if="datechan==idx" src="/pageA/static/images/active.png"
  176. style="width: 36rpx;height: 36rpx;" mode=""></image>
  177. <image v-else src="/pageA/static/images/unactive.png" style="width: 36rpx;height: 36rpx;"
  178. mode=""></image>
  179. </view>
  180. <view class="u-flex u-row-between" style="margin-top: 28rpx;">
  181. <view class="chest">
  182. <text>2号海运柜</text>
  183. <text style="margin: 0 16rpx;">|</text>
  184. <text>{{i18n.Estimatedtimeofarrival}}22{{i18n.Workingday}}</text>
  185. </view>
  186. <view class="mone">
  187. <text>¥</text>
  188. <text style="font-size: 32rpx;">1820</text>
  189. </view>
  190. </view>
  191. </view>
  192. </scroll-view>
  193. <view class="" style="height: 166rpx;"></view>
  194. <view class="enbottom u-flex u-row-between">
  195. <view class="cancel" @click="close">{{i18n.Cancel}}</view>
  196. <view class="confirm" @click="confirm">{{i18n.enter}}</view>
  197. </view>
  198. </view>
  199. </u-popup>
  200. </view>
  201. </template>
  202. <script>
  203. export default {
  204. data() {
  205. return {
  206. value: 1,
  207. show: false,
  208. index: '',
  209. show1: false,
  210. datechan: '',
  211. sku_info: {},
  212. goodinfo: {},
  213. swiptlist: [], //推荐列表
  214. language: 'zh-CN',
  215. containerList: [], //列表
  216. };
  217. },
  218. computed: {
  219. i18n() {
  220. return this.$t('index')
  221. }
  222. },
  223. onLoad(options) {
  224. // url: '/pageA/order?sku=' + this.sku_info + '&value=' + this.value+'&goodinfo='+this.goodinfo
  225. if (options) {
  226. this.value = options.value
  227. this.sku_info = JSON.parse(decodeURIComponent(options.sku));
  228. this.goodinfo = JSON.parse(decodeURIComponent(options.goodinfo))
  229. console.log(this.goodinfo);
  230. }
  231. },
  232. onShow() {
  233. if (uni.getStorageSync('language') != '') {
  234. this.language = uni.getStorageSync('language')
  235. }
  236. this.recommend()
  237. this.container()
  238. },
  239. methods: {
  240. //货柜列表
  241. container() {
  242. uni.$u.http.get('/api/container', {
  243. params: {
  244. is_page: 0,
  245. province_id: this.province_id,
  246. }
  247. }).then((res) => {
  248. this.containerList = res
  249. this.estimated_arrived_date = res[0].estimated_arrived_date
  250. this.dateid = res[0].id
  251. this.rightname = res[0].name
  252. }).catch(() => {
  253. })
  254. },
  255. //商品推荐
  256. recommend() {
  257. uni.$u.http.post('/api/goods/recommend',{
  258. keyword:''
  259. }).then((res) => {
  260. // this.swiptlist = res.reduce((a, b) => {
  261. // let lastIndex = a.length - 1
  262. // if (a[lastIndex].length < 3) {
  263. // a[lastIndex].push(b)
  264. // } else {
  265. // a.push([b])
  266. // }
  267. // return a
  268. // }, [
  269. // []
  270. // ])
  271. this.swiptlist = res
  272. }).catch(() => {
  273. })
  274. },
  275. change(index) {
  276. this.index = index
  277. },
  278. next() {
  279. this.show = false
  280. this.show1 = true
  281. },
  282. activea(idx) {
  283. this.datechan = idx
  284. },
  285. //确定
  286. confirm() {
  287. this.show1 = false
  288. },
  289. // 取消
  290. close() {
  291. this.show = false
  292. this.show1 = false
  293. },
  294. //提交订单
  295. topay() {
  296. uni.navigateTo({
  297. url: '/pageA/payorder'
  298. })
  299. }
  300. }
  301. }
  302. </script>
  303. <style lang="scss" scoped>
  304. ::v-deep .u-status-bar {
  305. height: 0 !important;
  306. }
  307. .confirm {
  308. width: 398rpx;
  309. height: 84rpx;
  310. background: #F83224;
  311. border-radius: 42rpx;
  312. text-align: center;
  313. font-family: PingFangSC, PingFang SC;
  314. font-weight: 500;
  315. font-size: 32rpx;
  316. color: #FFFFFF;
  317. line-height: 84rpx;
  318. text-align: center;
  319. font-style: normal;
  320. }
  321. .cancel {
  322. width: 280rpx;
  323. height: 84rpx;
  324. border-radius: 42rpx;
  325. border: 2rpx solid rgba(151, 151, 151, 0.3);
  326. font-family: PingFangSC, PingFang SC;
  327. font-weight: 400;
  328. font-size: 32rpx;
  329. color: #444444;
  330. line-height: 84rpx;
  331. text-align: center;
  332. font-style: normal;
  333. }
  334. .enbottom {
  335. width: 750rpx;
  336. height: 166rpx;
  337. background: #FFFFFF;
  338. position: absolute;
  339. left: 0rpx;
  340. bottom: 0;
  341. padding: 0 24rpx;
  342. box-sizing: border-box;
  343. }
  344. .mone {
  345. font-family: JDZhengHT, JDZhengHT;
  346. font-weight: 400;
  347. font-size: 26rpx;
  348. color: #F83224;
  349. line-height: 32rpx;
  350. text-align: left;
  351. font-style: normal;
  352. }
  353. .yundate {
  354. font-family: PingFangSC, PingFang SC;
  355. font-weight: 550;
  356. font-size: 32rpx;
  357. color: #333333;
  358. line-height: 44rpx;
  359. text-align: left;
  360. font-style: normal;
  361. }
  362. .chest {
  363. font-family: SFPro, SFPro;
  364. font-weight: 400;
  365. font-size: 24rpx;
  366. color: #555555;
  367. line-height: 28rpx;
  368. text-align: left;
  369. font-style: normal;
  370. }
  371. .act {
  372. width: 702rpx;
  373. height: 164rpx;
  374. background: #FFFFFF;
  375. border-radius: 12rpx;
  376. padding: 24rpx 20rpx;
  377. box-sizing: border-box;
  378. border: 1rpx solid #F83224;
  379. }
  380. .transport {
  381. width: 702rpx;
  382. height: 164rpx;
  383. background: #FFFFFF;
  384. border-radius: 12rpx;
  385. padding: 24rpx 20rpx;
  386. box-sizing: border-box;
  387. }
  388. .nextto {
  389. width: 702rpx;
  390. height: 84rpx;
  391. background: #F83224;
  392. border-radius: 44rpx;
  393. font-family: PingFangSC, PingFang SC;
  394. font-weight: 500;
  395. font-size: 32rpx;
  396. color: #FFFFFF;
  397. line-height: 84rpx;
  398. text-align: center;
  399. font-style: normal;
  400. margin-top: 108rpx;
  401. }
  402. .logname {
  403. font-family: PingFangSC, PingFang SC;
  404. font-weight: 400;
  405. font-size: 28rpx;
  406. color: #333333;
  407. line-height: 40rpx;
  408. text-align: right;
  409. font-style: normal;
  410. overflow: hidden;
  411. width: 220rpx ;
  412. white-space: nowrap;
  413. text-overflow: ellipsis;
  414. }
  415. .wei {
  416. font-family: JDZhengHT, JDZhengHT;
  417. font-weight: 400;
  418. font-size: 32rpx;
  419. color: #F83224;
  420. line-height: 40rpx;
  421. text-align: right;
  422. font-style: normal;
  423. margin-top: 8rpx;
  424. }
  425. .active {
  426. width: 218rpx;
  427. height: 148rpx;
  428. background: rgba(247, 50, 36, 0.05);
  429. border-radius: 8rpx;
  430. border: 1rpx solid #F83224;
  431. }
  432. .unactive {
  433. width: 218rpx;
  434. height: 148rpx;
  435. border-radius: 12rpx;
  436. border: 1rpx solid #C3C3C3;
  437. }
  438. .poptitle {
  439. width: 142rpx;
  440. height: 50rpx;
  441. font-family: PingFangSC, PingFang SC;
  442. font-weight: 600;
  443. font-size: 36rpx;
  444. color: #333333;
  445. text-align: center;
  446. width: 100%;
  447. }
  448. .back {
  449. background: rgba(244, 244, 244, 1);
  450. padding: 20rpx 24rpx;
  451. box-sizing: border-box;
  452. .btn {
  453. width: 750rpx;
  454. height: 166rpx;
  455. background: #FFFFFF;
  456. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  457. position: fixed;
  458. bottom: 0;
  459. left: 0;
  460. padding: 0 24rpx 5rpx 5rpx;
  461. box-sizing: border-box;
  462. .money {
  463. font-family: HarmonyOS_Sans_Medium;
  464. font-size: 48rpx;
  465. color: #F83224;
  466. line-height: 38rpx;
  467. text-align: left;
  468. font-style: normal;
  469. // font-weight: 500;
  470. font-weight: bold;
  471. }
  472. .kg {
  473. font-family: PingFangSC, PingFang SC;
  474. font-weight: 400;
  475. font-size: 24rpx;
  476. color: #333333;
  477. line-height: 34rpx;
  478. text-align: left;
  479. font-style: normal;
  480. }
  481. .order {
  482. width: 232rpx;
  483. height: 80rpx;
  484. background: #F83224;
  485. border-radius: 40rpx;
  486. font-family: PingFangTC, PingFangTC;
  487. font-weight: 500;
  488. font-size: 32rpx;
  489. color: #FFFFFF;
  490. line-height: 80rpx;
  491. text-align: center;
  492. font-style: normal;
  493. margin-left: 20rpx;
  494. }
  495. }
  496. //商品相关
  497. .abount {
  498. padding: 28rpx 24rpx;
  499. box-sizing: border-box;
  500. background: #FFFFFF;
  501. border-radius: 16rpx;
  502. width: 702rpx;
  503. .zong {
  504. width: 654rpx;
  505. padding: 22rpx 0 0 0;
  506. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  507. margin-top: 32rpx;
  508. .small {
  509. font-family: PingFangTC, PingFangTC;
  510. font-weight: 400;
  511. font-size: 24rpx;
  512. color: #444444;
  513. line-height: 34rpx;
  514. text-align: left;
  515. font-style: normal;
  516. }
  517. .mon {
  518. font-family: HarmonyOS_Sans_Medium;
  519. font-size: 28rpx;
  520. color: #F83224;
  521. line-height: 38rpx;
  522. text-align: left;
  523. font-style: normal;
  524. margin-left: 12rpx;
  525. font-weight: bold;
  526. }
  527. }
  528. .back {
  529. background: rgba(244, 244, 244, 1);
  530. padding: 22rpx 16rpx;
  531. box-sizing: border-box;
  532. margin-top: 10rpx;
  533. margin-bottom: 20rpx;
  534. }
  535. .name {
  536. font-family: PingFangSC, PingFang SC;
  537. font-weight: 400;
  538. font-size: 28rpx;
  539. color: #333333;
  540. line-height: 40rpx;
  541. text-align: left;
  542. font-style: normal;
  543. }
  544. .money {
  545. font-family: HarmonyOS_Sans_Medium;
  546. font-size: 28rpx;
  547. color: #222222;
  548. line-height: 38rpx;
  549. text-align: left;
  550. font-style: normal;
  551. font-weight: 600;
  552. }
  553. }
  554. .recommend {
  555. margin-top: 20rpx;
  556. .title {
  557. font-family: PingFangSC, PingFang SC;
  558. font-weight: 400;
  559. font-size: 22rpx;
  560. color: #222222;
  561. line-height: 32rpx;
  562. text-align: left;
  563. font-style: normal;
  564. width: 148rpx;
  565. }
  566. .top {
  567. width: 702rpx;
  568. height: 64rpx;
  569. background: linear-gradient(180deg, #FFE7E3 0%, rgba(255, 255, 255, 1) 100%);
  570. border-radius: 16rpx 16rpx 0 0;
  571. padding: 24rpx 22rpx;
  572. box-sizing: border-box;
  573. }
  574. .bottom {
  575. padding: 0 20rpx 22rpx;
  576. box-sizing: border-box;
  577. background: #fff;
  578. }
  579. }
  580. //物流
  581. .logistics {
  582. width: 702rpx;
  583. height: 96rpx;
  584. background: #FFFFFF;
  585. border-radius: 16rpx;
  586. padding: 28rpx 22rpx;
  587. box-sizing: border-box;
  588. margin-top: 20rpx;
  589. .change {
  590. font-family: PingFangSC, PingFang SC;
  591. font-weight: 400;
  592. font-size: 28rpx;
  593. color: #F83224;
  594. line-height: 40rpx;
  595. text-align: left;
  596. font-style: normal;
  597. margin-right: 8rpx;
  598. }
  599. }
  600. //商城
  601. .shop {
  602. width: 702rpx;
  603. // height: 322rpx;
  604. background: #FFFFFF;
  605. border-radius: 16rpx;
  606. padding: 30rpx 24rpx;
  607. margin-top: 20rpx;
  608. box-sizing: border-box;
  609. .bu {
  610. width: 120rpx;
  611. height: 40rpx;
  612. border-radius: 20rpx;
  613. border: 1rpx solid rgba(151, 151, 151, 0.3);
  614. }
  615. .money {
  616. font-family: HarmonyOS_Sans_Medium;
  617. font-size: 24rpx;
  618. color: #F83224;
  619. line-height: 34rpx;
  620. text-align: left;
  621. font-style: normal;
  622. font-weight: 600;
  623. }
  624. .name {
  625. font-family: PingFangSC, PingFang SC;
  626. font-weight: 400;
  627. font-size: 30rpx;
  628. color: #222222;
  629. line-height: 42rpx;
  630. text-align: left;
  631. font-style: normal;
  632. margin-left: 10rpx;
  633. }
  634. .weight {
  635. font-family: PingFangSC, PingFang SC;
  636. font-weight: 400;
  637. font-size: 24rpx;
  638. color: rgba(34, 34, 34, 0.6);
  639. line-height: 34rpx;
  640. text-align: left;
  641. font-style: normal;
  642. margin-top: 16rpx;
  643. }
  644. }
  645. // 地址
  646. .address {
  647. width: 702rpx;
  648. // height: 182rpx;
  649. background: #FFFFFF;
  650. border-radius: 16rpx;
  651. padding: 32rpx 24rpx;
  652. box-sizing: border-box;
  653. .add {
  654. font-family: SFPro, SFPro;
  655. font-weight: 500;
  656. font-size: 32rpx;
  657. color: #222222;
  658. line-height: 36rpx;
  659. text-align: left;
  660. font-style: normal;
  661. }
  662. .info {
  663. font-family: SFPro, SFPro;
  664. font-weight: 400;
  665. font-size: 24rpx;
  666. color: #555555;
  667. line-height: 28rpx;
  668. text-align: left;
  669. font-style: normal;
  670. margin-top: 20rpx;
  671. }
  672. }
  673. }
  674. .minus {
  675. width: 22px;
  676. height: 22px;
  677. border-width: 1px;
  678. border-color: #E6E6E6;
  679. border-style: solid;
  680. border-top-left-radius: 100px;
  681. border-top-right-radius: 100px;
  682. border-bottom-left-radius: 100px;
  683. border-bottom-right-radius: 100px;
  684. @include flex;
  685. justify-content: center;
  686. align-items: center;
  687. }
  688. .input {
  689. padding: 0 10px;
  690. }
  691. .plus {
  692. width: 22px;
  693. height: 22px;
  694. background-color: #FF0000;
  695. border-radius: 50%;
  696. /* #ifndef APP-NVUE */
  697. display: flex;
  698. /* #endif */
  699. justify-content: center;
  700. align-items: center;
  701. }
  702. </style>