index_mall.vue 23 KB

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