index_mall.vue 23 KB

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