index_mall.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998
  1. <template>
  2. <view>
  3. <headerSerch :dataConfig="headItem"></headerSerch>
  4. <view class="header-group">
  5. <view class="tabs">
  6. <u-tabs :list="navigationList" @click="clickNav" lineColor="#FFD373" :inactiveStyle="{ color: '#FFF' }"
  7. :activeStyle="{ color: '#FFD373', fontWeight: 'bold' }"></u-tabs>
  8. </view>
  9. </view>
  10. <!-- 内容切换 -->
  11. <view class="tab-content" v-if="current == 0">
  12. <!-- 轮播 -->
  13. <view class="swiper-group">
  14. <u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
  15. </view>
  16. <!-- 宫格 -->
  17. <view class="grid-box">
  18. <view class="grid-group">
  19. <view class="grid-item">
  20. <image src="../../../static/menus/秒杀专区.png" mode="aspectFit"></image>
  21. <text>秒杀专区</text>
  22. </view>
  23. <view class="grid-item">
  24. <image src="../../../static/menus/红包商城.png" mode="aspectFit"></image>
  25. <text>红包商城</text>
  26. </view>
  27. <view class="grid-item">
  28. <image src="../../../static/menus/积分专区.png" mode="aspectFit"></image>
  29. <text>积分专区</text>
  30. </view>
  31. <view class="grid-item">
  32. <image src="../../../static/menus/创客专区.png" mode="aspectFit"></image>
  33. <text>创客专区</text>
  34. </view>
  35. <view class="grid-item">
  36. <image src="../../../static/menus/城市合伙人.png" mode="aspectFit"></image>
  37. <text>城市合伙人</text>
  38. </view>
  39. <view class="grid-item">
  40. <image src="../../../static/menus/积分抵扣专区.png" mode="aspectFit"></image>
  41. <text>抵扣专区</text>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- 通知 -->
  46. <view class="notice">
  47. <u-notice-bar :text="notice" direction="column" duration="3000" fontSize="28"></u-notice-bar>
  48. </view>
  49. <!-- 爆款专区 -->
  50. <view class="sale-group">
  51. <view class="sale-content">
  52. <view class="title">爆款专区 <view class="more">
  53. </view>
  54. </view>
  55. <view class="goods-scroll">
  56. <scroll-view scroll-x="true">
  57. <view class="goods-item" v-for="(item, index) in tempArr" :key="index"
  58. @click="goDetail(item)">
  59. <image :src="item.image" mode="aspectFit"></image>
  60. <view class="goods-name">
  61. <u-text prefixIcon="bookmark" iconStyle="font-size: 16px; color:red" :lines="2" bold
  62. block size="20" :text="item.store_name"></u-text>
  63. <view class="tags">赠送20.54红积分</view>
  64. <view class="price">¥{{ item.ot_price }}</view>
  65. </view>
  66. </view>
  67. </scroll-view>
  68. </view>
  69. </view>
  70. </view>
  71. <!-- 商品列表 -->
  72. <view class="goods-list">
  73. <view class="title">
  74. <view class="line"></view>
  75. 商品推荐
  76. <view class="line"></view>
  77. </view>
  78. <goodListMall @changeTab="changeTab" :tempArr="tempArr" :iSshowH="false" @detail="goDetail"
  79. :isSortType="isSortType"></goodListMall>
  80. </view>
  81. </view>
  82. <view class="tab-content" v-if="current >= 1">
  83. <!-- 轮播 -->
  84. <view class="swiper-group">
  85. <u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
  86. </view>
  87. <!-- 商品二级列表 -->
  88. <view class="tabs">
  89. <u-tabs :list="navigationList2" @click="" lineColor="#EB4C63" :inactiveStyle="{ color: '#333' }"
  90. :activeStyle="{ color: '#EB4C63', fontWeight: 'bold' }"></u-tabs>
  91. </view>
  92. <!-- 商品列表 -->
  93. <goodListMall @changeTab="changeTab" :tempArr="tempArr" :iSshowH="true" @detail="goDetail"
  94. :isSortType="isSortType"></goodListMall>
  95. </view>
  96. </view>
  97. </template>
  98. <script>
  99. import headerSerch from './components/headerSerch';
  100. import goodListMall from './components/goodListMall';
  101. import {getAdsList} from '../../../api/home.js'
  102. import {
  103. goShopDetail
  104. } from '@/libs/order.js';
  105. export default {
  106. components: {
  107. headerSerch,
  108. goodListMall
  109. },
  110. data() {
  111. return {
  112. tempArr: [
  113. {
  114. "id": 72,
  115. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211112/mid_1608a6e46f559f11328c544fa05ea10b.png",
  116. "store_name": "COACH/蔻驰女士swinger腋下包单肩包麻将包豌豆包",
  117. "store_info": "COACH/蔻驰女士swinger腋下包单肩包麻将包豌豆包",
  118. "cate_id": "79",
  119. "price": "3000.00",
  120. "ot_price": "2900.00",
  121. "sales": "226",
  122. "unit_name": "件",
  123. "sort": 446,
  124. "activity": [],
  125. "stock": 258,
  126. "vip_price": 0,
  127. "is_vip": 0,
  128. "couponId": [],
  129. "star": [
  130. {
  131. "product_score": 5,
  132. "product_id": 72
  133. }
  134. ],
  135. "checkCoupon": false
  136. },
  137. {
  138. "id": 119,
  139. "image": "https://demo26.crmeb.net/uploads/attach/2021/12/10/mid_738c68638ab29effeff2e98365ec6dd6.jpg",
  140. "store_name": "微星(MSI)GK50Z 机械键盘 红轴 RGB光效 有线 游戏电竞办公键盘 104键 吃鸡键盘 黑色",
  141. "store_info": "ceshi123",
  142. "cate_id": "38",
  143. "price": "0.01",
  144. "ot_price": "199.00",
  145. "sales": "135",
  146. "unit_name": "件",
  147. "sort": 999,
  148. "activity": [],
  149. "stock": 24855,
  150. "vip_price": 0,
  151. "is_vip": 0,
  152. "couponId": [
  153. {
  154. "id": 23,
  155. "product_id": 119,
  156. "issue_coupon_id": 218,
  157. "title": "",
  158. "add_time": 1664522680
  159. }
  160. ],
  161. "star": [
  162. {
  163. "product_score": 5,
  164. "product_id": 119
  165. },
  166. {
  167. "product_score": 5,
  168. "product_id": 119
  169. },
  170. {
  171. "product_score": 5,
  172. "product_id": 119
  173. },
  174. {
  175. "product_score": 4,
  176. "product_id": 119
  177. },
  178. {
  179. "product_score": 4,
  180. "product_id": 119
  181. },
  182. {
  183. "product_score": 5,
  184. "product_id": 119
  185. },
  186. {
  187. "product_score": 5,
  188. "product_id": 119
  189. },
  190. {
  191. "product_score": 5,
  192. "product_id": 119
  193. },
  194. {
  195. "product_score": 5,
  196. "product_id": 119
  197. },
  198. {
  199. "product_score": 4,
  200. "product_id": 119
  201. },
  202. {
  203. "product_score": 5,
  204. "product_id": 119
  205. },
  206. {
  207. "product_score": 2,
  208. "product_id": 119
  209. },
  210. {
  211. "product_score": 5,
  212. "product_id": 119
  213. },
  214. {
  215. "product_score": 5,
  216. "product_id": 119
  217. },
  218. {
  219. "product_score": 5,
  220. "product_id": 119
  221. },
  222. {
  223. "product_score": 5,
  224. "product_id": 119
  225. },
  226. {
  227. "product_score": 5,
  228. "product_id": 119
  229. },
  230. {
  231. "product_score": 3,
  232. "product_id": 119
  233. },
  234. {
  235. "product_score": 5,
  236. "product_id": 119
  237. },
  238. {
  239. "product_score": 5,
  240. "product_id": 119
  241. },
  242. {
  243. "product_score": 5,
  244. "product_id": 119
  245. },
  246. {
  247. "product_score": 5,
  248. "product_id": 119
  249. },
  250. {
  251. "product_score": 5,
  252. "product_id": 119
  253. },
  254. {
  255. "product_score": 5,
  256. "product_id": 119
  257. },
  258. {
  259. "product_score": 5,
  260. "product_id": 119
  261. },
  262. {
  263. "product_score": 5,
  264. "product_id": 119
  265. },
  266. {
  267. "product_score": 5,
  268. "product_id": 119
  269. },
  270. {
  271. "product_score": 4,
  272. "product_id": 119
  273. },
  274. {
  275. "product_score": 4,
  276. "product_id": 119
  277. },
  278. {
  279. "product_score": 3,
  280. "product_id": 119
  281. },
  282. {
  283. "product_score": 4,
  284. "product_id": 119
  285. },
  286. {
  287. "product_score": 5,
  288. "product_id": 119
  289. },
  290. {
  291. "product_score": 4,
  292. "product_id": 119
  293. },
  294. {
  295. "product_score": 5,
  296. "product_id": 119
  297. },
  298. {
  299. "product_score": 5,
  300. "product_id": 119
  301. },
  302. {
  303. "product_score": 4,
  304. "product_id": 119
  305. },
  306. {
  307. "product_score": 5,
  308. "product_id": 119
  309. },
  310. {
  311. "product_score": 5,
  312. "product_id": 119
  313. },
  314. {
  315. "product_score": 5,
  316. "product_id": 119
  317. },
  318. {
  319. "product_score": 4,
  320. "product_id": 119
  321. },
  322. {
  323. "product_score": 5,
  324. "product_id": 119
  325. },
  326. {
  327. "product_score": 5,
  328. "product_id": 119
  329. },
  330. {
  331. "product_score": 5,
  332. "product_id": 119
  333. },
  334. {
  335. "product_score": 4,
  336. "product_id": 119
  337. },
  338. {
  339. "product_score": 5,
  340. "product_id": 119
  341. },
  342. {
  343. "product_score": 4,
  344. "product_id": 119
  345. },
  346. {
  347. "product_score": 5,
  348. "product_id": 119
  349. },
  350. {
  351. "product_score": 5,
  352. "product_id": 119
  353. },
  354. {
  355. "product_score": 5,
  356. "product_id": 119
  357. },
  358. {
  359. "product_score": 5,
  360. "product_id": 119
  361. },
  362. {
  363. "product_score": 5,
  364. "product_id": 119
  365. },
  366. {
  367. "product_score": 5,
  368. "product_id": 119
  369. },
  370. {
  371. "product_score": 2,
  372. "product_id": 119
  373. },
  374. {
  375. "product_score": 5,
  376. "product_id": 119
  377. },
  378. {
  379. "product_score": 5,
  380. "product_id": 119
  381. },
  382. {
  383. "product_score": 5,
  384. "product_id": 119
  385. },
  386. {
  387. "product_score": 5,
  388. "product_id": 119
  389. },
  390. {
  391. "product_score": 5,
  392. "product_id": 119
  393. },
  394. {
  395. "product_score": 5,
  396. "product_id": 119
  397. },
  398. {
  399. "product_score": 5,
  400. "product_id": 119
  401. }
  402. ],
  403. "checkCoupon": false
  404. },
  405. {
  406. "id": 41,
  407. "image": "http://demo26.crmeb.net/uploads/attach/2020/10/13/a23b5bc300cc6a965082368f8c657b3d.jpg",
  408. "store_name": "华为智选摄像头智能家居监控器无线高清网络摄像头家用全景智能摄像机1080P夜间清晰人像AI智能看护",
  409. "store_info": "华为智选摄像头智能家居监控器无线高清网络摄像头家用全景智能摄像机1080P夜间清晰人像AI智能看护",
  410. "cate_id": "11,21",
  411. "price": "500.00",
  412. "ot_price": "1000.00",
  413. "sales": "94",
  414. "unit_name": "件",
  415. "sort": 0,
  416. "activity": [],
  417. "stock": 1981,
  418. "vip_price": 0,
  419. "is_vip": 0,
  420. "couponId": [],
  421. "star": [],
  422. "checkCoupon": false
  423. },
  424. {
  425. "id": 51,
  426. "image": "http://demo26.crmeb.net/uploads/attach/2020/10/20201014/118bccc3d5499881dd7178c43ebb9346.jpg",
  427. "store_name": "极度空间 中秋贺卡 生日卡片 创意3D明信片感恩卡*10",
  428. "store_info": "极度空间 中秋贺卡 生日卡片 创意3D明信片感恩卡*10",
  429. "cate_id": "40,34",
  430. "price": "100.00",
  431. "ot_price": "1000.00",
  432. "sales": "39",
  433. "unit_name": "件",
  434. "sort": 0,
  435. "activity": [],
  436. "stock": 761,
  437. "vip_price": 0,
  438. "is_vip": 0,
  439. "couponId": [],
  440. "star": [
  441. {
  442. "product_score": 5,
  443. "product_id": 51
  444. }
  445. ],
  446. "checkCoupon": true
  447. },
  448. {
  449. "id": 89,
  450. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/mid_2fbe723632427b0768df24c4f23c6cad.png",
  451. "store_name": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
  452. "store_info": "",
  453. "cate_id": "35",
  454. "price": "350.00",
  455. "ot_price": "300.00",
  456. "sales": "19",
  457. "unit_name": "件",
  458. "sort": 553,
  459. "activity": [],
  460. "stock": 185,
  461. "vip_price": 0,
  462. "is_vip": 0,
  463. "couponId": [],
  464. "star": [
  465. {
  466. "product_score": 5,
  467. "product_id": 89
  468. }
  469. ],
  470. "checkCoupon": false
  471. },
  472. {
  473. "id": 45,
  474. "image": "http://demo26.crmeb.net/uploads/attach/2020/10/20201014/1bfcaad092adb917739ec681f55fb255.jpg",
  475. "store_name": "Adidas阿迪达斯男装 2020秋季新款运动服户外跑步训练健身透气舒适时尚休闲夹克外套GD5462 GD5462 L",
  476. "store_info": "Adidas阿迪达斯男装 2020秋季新款运动服户外跑步训练健身透气舒适时尚休闲夹克外套GD5462 GD5462 L",
  477. "cate_id": "26,27,50,54",
  478. "price": "200.00",
  479. "ot_price": "500.00",
  480. "sales": "11",
  481. "unit_name": "件",
  482. "sort": 0,
  483. "activity": [],
  484. "stock": 4984,
  485. "vip_price": "120.00",
  486. "is_vip": 1,
  487. "couponId": [],
  488. "star": [
  489. {
  490. "product_score": 5,
  491. "product_id": 45
  492. },
  493. {
  494. "product_score": 5,
  495. "product_id": 45
  496. },
  497. {
  498. "product_score": 2,
  499. "product_id": 45
  500. }
  501. ],
  502. "checkCoupon": false
  503. },
  504. {
  505. "id": 71,
  506. "image": "https://demo26.crmeb.net/uploads/attach/2021/09/03/mid_0b209a475fe7a7118dc964407c98542c.jpg",
  507. "store_name": "Casio卡西欧女表时尚优雅简约指针防水复古石英手表LTP-1094E-1A",
  508. "store_info": "品质保障 全场包邮",
  509. "cate_id": "38",
  510. "price": "265.00",
  511. "ot_price": "265.00",
  512. "sales": "6",
  513. "unit_name": "件",
  514. "sort": 300,
  515. "activity": [],
  516. "stock": 94,
  517. "vip_price": 0,
  518. "is_vip": 0,
  519. "couponId": [],
  520. "star": [
  521. {
  522. "product_score": 5,
  523. "product_id": 71
  524. },
  525. {
  526. "product_score": 5,
  527. "product_id": 71
  528. },
  529. {
  530. "product_score": 5,
  531. "product_id": 71
  532. }
  533. ],
  534. "checkCoupon": false
  535. }
  536. ],
  537. isSortType: 0,
  538. headItem: {
  539. "name": "headerSerch",
  540. "timestamp": "1666235374470000",
  541. "setUp": {
  542. "tabVal": 0
  543. },
  544. "bgColor": {
  545. "title": "背景颜色(渐变)",
  546. "name": "bgColor",
  547. "default": [
  548. {
  549. "item": "#F62C2C"
  550. },
  551. {
  552. "item": "#F96E29"
  553. }
  554. ],
  555. "color": [
  556. {
  557. "item": "rgba(242,16,78,1)"
  558. },
  559. {
  560. "item": "rgba(210,41,87,1)"
  561. }
  562. ]
  563. },
  564. "boxStyle": {
  565. "title": "边框样式",
  566. "name": "boxStyle",
  567. "type": 0,
  568. "list": [
  569. {
  570. "val": "圆角",
  571. "icon": "iconPic_fillet"
  572. },
  573. {
  574. "val": "直角",
  575. "icon": "iconPic_square"
  576. }
  577. ]
  578. },
  579. "txtStyle": {
  580. "title": "文本位置",
  581. "name": "txtStyle",
  582. "type": 1,
  583. "list": [
  584. {
  585. "val": "居左",
  586. "icon": "icondoc_left"
  587. },
  588. {
  589. "val": "居中",
  590. "icon": "icondoc_center"
  591. }
  592. ]
  593. },
  594. "prConfig": {
  595. "title": "背景边距",
  596. "val": 8,
  597. "min": 0
  598. },
  599. "mbConfig": {
  600. "title": "页面间距",
  601. "val": 0,
  602. "min": 0
  603. },
  604. "hotWords": {
  605. "list": [
  606. {
  607. "val": ""
  608. }
  609. ]
  610. },
  611. "logoConfig": {
  612. "type": 1,
  613. "header": "设置logo",
  614. "title": "",
  615. "url": "https://demo26.crmeb.net/uploads/attach/2022/10/20221009/7436ee5680bc5d67c46a6017939475e5.png"
  616. },
  617. "id": "id1665385357481000"
  618. },
  619. current: 0,
  620. notice: ['uView UI众多组件覆盖开发过程的各个需求', '组件功能丰富,多端兼容。让您快速集成,开箱即用'],
  621. swiperList: [
  622. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  623. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  624. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  625. ],
  626. navigationList: [{
  627. name: '推荐',
  628. }, {
  629. name: '箱包皮具'
  630. }, {
  631. name: '家具家私'
  632. }, {
  633. name: '美妆护肤'
  634. }, {
  635. name: '日用百货'
  636. }, {
  637. name: '运动户外'
  638. }, {
  639. name: '珠宝首饰'
  640. }, {
  641. name: '家纺家饰'
  642. }]
  643. }
  644. },
  645. mounted() {
  646. this.getAdsList()
  647. },
  648. onLoad() {
  649. },
  650. methods: {
  651. getAdsList() {
  652. getAdsList().then(res => {
  653. console.log(res);
  654. });
  655. },
  656. // 促销列表的点击事件;
  657. changeTab(type) {
  658. this.goodType = type;
  659. this.tempArr = [];
  660. this.page = 1;
  661. this.loadend = false;
  662. let onloadH = true;
  663. this.getGroomList(onloadH);
  664. },
  665. // 精品推荐
  666. getGroomList(onloadH) {
  667. let that = this;
  668. let type = that.goodType;
  669. if (that.loadend) return false;
  670. if (that.loading) return false;
  671. if (onloadH) {
  672. that.$set(that, 'iSshowH', true);
  673. }
  674. uni.request({
  675. url: 'api/groom/list',
  676. success: res => {
  677. that.$set(that, 'iSshowH', false);
  678. let maxPage = Math.ceil(this.numConfig / this.limit);
  679. let list = res.data.list,
  680. loadend = list.length < that.limit || that.page >= maxPage;
  681. let tempArr = that.$util.SplitArray(list, that.tempArr);
  682. that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  683. that.loadend = loadend;
  684. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  685. that.page = that.page + 1;
  686. that.loading = false;
  687. }
  688. })
  689. // getGroomList(type, {
  690. // page: that.page,
  691. // limit: this.numConfig
  692. // })
  693. // .then(({
  694. // data
  695. // }) => {
  696. // that.$set(that, 'iSshowH', false);
  697. // let maxPage = Math.ceil(this.numConfig / this.limit);
  698. // let list = data.list,
  699. // loadend = list.length < that.limit || that.page >= maxPage;
  700. // let tempArr = that.$util.SplitArray(list, that.tempArr);
  701. // that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  702. // that.loadend = loadend;
  703. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  704. // that.page = that.page + 1;
  705. // that.loading = false;
  706. // })
  707. // .catch(res => {
  708. // that.loading = false;
  709. // that.loadTitle = that.$t(`加载更多`);
  710. // });
  711. },
  712. goDetail(item) {
  713. goShopDetail(item, this.$store.state.app.uid).then(res => {
  714. uni.navigateTo({
  715. url: `/pages/goods_details/index?id=${item.id}`
  716. });
  717. });
  718. },
  719. // 去商品详情
  720. goGoodsDetail(item) {
  721. goShopDetail(item, this.uid).then(res => {
  722. uni.navigateTo({
  723. url: `/pages/goods_details/index?id=${item.id}`
  724. });
  725. });
  726. },
  727. clickNav(e) {
  728. console.log(e)
  729. this.current = e.index
  730. }
  731. }
  732. }
  733. </script>
  734. <style lang="scss" scoped>
  735. page {
  736. background-color: #ee4040;
  737. }
  738. .header-group {
  739. background-color: #EB4C63;
  740. .search-group {
  741. display: flex;
  742. align-items: center;
  743. justify-content: space-between;
  744. padding: 30rpx 30rpx 10rpx 30rpx;
  745. .logo {
  746. width: 138rpx;
  747. height: 46rpx;
  748. }
  749. .message {
  750. line-height: 1;
  751. image {
  752. width: 48rpx;
  753. height: 48rpx;
  754. }
  755. }
  756. .search {
  757. flex: 1;
  758. padding: 0 30rpx;
  759. .searchBox {
  760. padding: 0 30rpx;
  761. display: flex;
  762. align-items: center;
  763. background-color: #FFF;
  764. border-radius: 100rpx;
  765. height: 60rpx;
  766. image {
  767. width: 28rpx;
  768. height: 28rpx;
  769. padding-right: 20rpx;
  770. }
  771. text {
  772. font-size: 24rpx;
  773. color: #999;
  774. }
  775. }
  776. }
  777. }
  778. .tabs {
  779. padding: 0 20rpx;
  780. }
  781. }
  782. .tab-content {
  783. .swiper-group {
  784. padding: 20rpx 30rpx 10rpx 30rpx;
  785. background-image: linear-gradient(to bottom, #EB4C63, #F9F9F9);
  786. }
  787. .grid-box {
  788. padding: 10rpx 30rpx 20rpx 30rpx;
  789. .grid-group {
  790. padding: 20rpx 0;
  791. border-radius: 20rpx;
  792. background-color: #FFF;
  793. display: flex;
  794. align-items: center;
  795. flex-wrap: wrap;
  796. .grid-item {
  797. width: 33.333%;
  798. display: flex;
  799. flex-direction: column;
  800. align-items: center;
  801. margin: 10rpx 0;
  802. image {
  803. width: 98rpx;
  804. height: 98rpx;
  805. }
  806. text {
  807. font-size: 24rpx;
  808. color: #666;
  809. margin-top: 10rpx;
  810. }
  811. }
  812. }
  813. }
  814. .notice {
  815. padding: 0 30rpx;
  816. }
  817. .sale-group {
  818. padding: 20rpx 30rpx;
  819. .sale-content {
  820. border-radius: 20rpx;
  821. background-image: linear-gradient(45deg, #EB4C63, #FFA470);
  822. padding: 20rpx 0;
  823. .title {
  824. display: flex;
  825. align-items: center;
  826. justify-content: space-between;
  827. color: #FFF;
  828. font-weight: bold;
  829. padding: 0 30rpx;
  830. .more {
  831. display: flex;
  832. align-items: center;
  833. font-size: 24rpx;
  834. font-weight: normal;
  835. image {
  836. width: 24rpx;
  837. height: 24rpx;
  838. }
  839. }
  840. }
  841. .goods-scroll {
  842. white-space: nowrap;
  843. padding: 20rpx 15rpx 0 15rpx;
  844. .goods-item {
  845. display: inline-block;
  846. width: 240rpx;
  847. padding: 15rpx;
  848. margin: 0 10rpx;
  849. background-color: #FFF;
  850. border-radius: 10rpx;
  851. image {
  852. width: 210rpx;
  853. height: 210rpx;
  854. }
  855. .goods-name {
  856. font-size: 26rpx;
  857. color: #333;
  858. width: 240rpx;
  859. margin: 6rpx 0;
  860. word-break: break-all;
  861. white-space: pre-wrap;
  862. text-overflow: ellipsis;
  863. display: -webkit-box;
  864. line-height: 1.2;
  865. -webkit-box-orient: vertical;
  866. -webkit-line-clamp: 2;
  867. overflow: hidden;
  868. }
  869. .tags {
  870. display: inline-block;
  871. font-size: 20rpx;
  872. padding: 6rpx;
  873. background-color: #FCE9EC;
  874. color: #EB4C63;
  875. margin: 6rpx 0;
  876. }
  877. .price {
  878. font-size: 32rpx;
  879. font-weight: bold;
  880. color: #EB4C63;
  881. }
  882. }
  883. }
  884. }
  885. }
  886. .goods-list {
  887. .title {
  888. text-align: center;
  889. color: #333;
  890. display: flex;
  891. align-items: center;
  892. justify-content: center;
  893. font-size: 32rpx;
  894. font-weight: bold;
  895. .line {
  896. display: inline-block;
  897. width: 200rpx;
  898. height: 2rpx;
  899. margin: 0 30rpx;
  900. background-color: #FFA470;
  901. }
  902. }
  903. .list-group {
  904. display: flex;
  905. align-items: center;
  906. flex-wrap: wrap;
  907. padding: 15rpx;
  908. box-sizing: border-box;
  909. .list-item-content {
  910. width: 50%;
  911. padding: 15rpx;
  912. box-sizing: border-box;
  913. .list-item {
  914. padding: 15rpx;
  915. background-color: #FFF;
  916. border-radius: 10rpx;
  917. image {
  918. width: 100%;
  919. }
  920. .goods-name {
  921. font-size: 28rpx;
  922. color: #333;
  923. margin: 6rpx 0;
  924. word-break: break-all;
  925. white-space: pre-wrap;
  926. text-overflow: ellipsis;
  927. display: -webkit-box;
  928. line-height: 1.4;
  929. -webkit-box-orient: vertical;
  930. -webkit-line-clamp: 2;
  931. overflow: hidden;
  932. }
  933. .tags {
  934. display: inline-block;
  935. font-size: 20rpx;
  936. padding: 6rpx;
  937. background-color: #FCE9EC;
  938. color: #EB4C63;
  939. margin: 6rpx 0;
  940. }
  941. .price {
  942. font-size: 32rpx;
  943. font-weight: bold;
  944. color: #EB4C63;
  945. }
  946. }
  947. }
  948. }
  949. }
  950. }
  951. </style>