index_mall.vue 23 KB

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