index_mall.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065
  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. this.navigationList = []
  673. let tuiJian = {
  674. title: '推荐',
  675. id: '0'
  676. }
  677. this.navigationList = res.data
  678. this.navigationList.unshift(tuiJian)
  679. })
  680. },
  681. menusTap(url) {
  682. // #ifdef H5
  683. location.href = url
  684. // #endif
  685. // #ifdef MP || APP-PLUS
  686. uni.navigateTo({
  687. url: "/pages/goods/goods_list_mall/index?sid=" + 1 + "&title=" + url
  688. });
  689. // #endif
  690. },
  691. noticeClose() {
  692. this.noticeShow = false
  693. },
  694. goNoticeDetail(value) {
  695. this.noticeContent = this.noticeList[value].content
  696. this.noticeShow = true
  697. },
  698. getNoticeList() {
  699. getNoticeList().then(res => {
  700. this.notice = []
  701. this.noticeList = res.data
  702. res.data.forEach(element => {
  703. this.notice.push(element.title)
  704. });
  705. })
  706. },
  707. getAdsList() {
  708. getAdsList({
  709. type: 2
  710. }).then(res => {
  711. if (res.data.length > 0) {
  712. this.swiperList = []
  713. res.data.forEach(element => {
  714. this.swiperList.push(element.imageUrl)
  715. });
  716. }
  717. });
  718. },
  719. // 促销列表的点击事件;
  720. changeTab(type) {
  721. this.goodType = type;
  722. this.tempArr = [];
  723. this.page = 1;
  724. this.loadend = false;
  725. let onloadH = true;
  726. this.getGroomList(onloadH);
  727. },
  728. // 精品推荐
  729. getGroomList(onloadH) {
  730. let that = this;
  731. let type = that.goodType;
  732. if (that.loadend) return false;
  733. if (that.loading) return false;
  734. if (onloadH) {
  735. that.$set(that, 'iSshowH', true);
  736. }
  737. uni.request({
  738. url: 'api/groom/list',
  739. success: res => {
  740. that.$set(that, 'iSshowH', false);
  741. let maxPage = Math.ceil(this.numConfig / this.limit);
  742. let list = res.data.list,
  743. loadend = list.length < that.limit || that.page >= maxPage;
  744. let tempArr = that.$util.SplitArray(list, that.tempArr);
  745. that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  746. that.loadend = loadend;
  747. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  748. that.page = that.page + 1;
  749. that.loading = false;
  750. }
  751. })
  752. // getGroomList(type, {
  753. // page: that.page,
  754. // limit: this.numConfig
  755. // })
  756. // .then(({
  757. // data
  758. // }) => {
  759. // that.$set(that, 'iSshowH', false);
  760. // let maxPage = Math.ceil(this.numConfig / this.limit);
  761. // let list = data.list,
  762. // loadend = list.length < that.limit || that.page >= maxPage;
  763. // let tempArr = that.$util.SplitArray(list, that.tempArr);
  764. // that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  765. // that.loadend = loadend;
  766. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  767. // that.page = that.page + 1;
  768. // that.loading = false;
  769. // })
  770. // .catch(res => {
  771. // that.loading = false;
  772. // that.loadTitle = that.$t(`加载更多`);
  773. // });
  774. },
  775. goDetail(item) {
  776. goShopDetail(item, this.$store.state.app.uid).then(res => {
  777. uni.navigateTo({
  778. url: `/pages/goods_details/index?id=${item.id}`
  779. });
  780. });
  781. },
  782. // 去商品详情
  783. goGoodsDetail(item) {
  784. goShopDetail(item, this.uid).then(res => {
  785. uni.navigateTo({
  786. url: `/pages/goods_details/index?id=${item.id}`
  787. });
  788. });
  789. },
  790. clickNav(e) {
  791. this.current = e.index
  792. if(e.index > 0){
  793. this.currentId = e.id
  794. }
  795. }
  796. }
  797. }
  798. </script>
  799. <style lang="scss" scoped>
  800. page {
  801. background-color: #ee4040;
  802. }
  803. .header-group {
  804. background-color: #EB4C63;
  805. .search-group {
  806. display: flex;
  807. align-items: center;
  808. justify-content: space-between;
  809. padding: 30rpx 30rpx 10rpx 30rpx;
  810. .logo {
  811. width: 138rpx;
  812. height: 46rpx;
  813. }
  814. .message {
  815. line-height: 1;
  816. image {
  817. width: 48rpx;
  818. height: 48rpx;
  819. }
  820. }
  821. .search {
  822. flex: 1;
  823. padding: 0 30rpx;
  824. .searchBox {
  825. padding: 0 30rpx;
  826. display: flex;
  827. align-items: center;
  828. background-color: #FFF;
  829. border-radius: 100rpx;
  830. height: 60rpx;
  831. image {
  832. width: 28rpx;
  833. height: 28rpx;
  834. padding-right: 20rpx;
  835. }
  836. text {
  837. font-size: 24rpx;
  838. color: #999;
  839. }
  840. }
  841. }
  842. }
  843. .tabs {
  844. padding: 0 20rpx;
  845. }
  846. }
  847. .tab-content {
  848. .swiper-group {
  849. padding: 20rpx 30rpx 10rpx 30rpx;
  850. background-image: linear-gradient(to bottom, #EB4C63, #F9F9F9);
  851. }
  852. .grid-box {
  853. padding: 10rpx 30rpx 20rpx 30rpx;
  854. .grid-group {
  855. padding: 20rpx 0;
  856. border-radius: 20rpx;
  857. background-color: #FFF;
  858. display: flex;
  859. align-items: center;
  860. flex-wrap: wrap;
  861. .grid-item {
  862. width: 33.333%;
  863. display: flex;
  864. flex-direction: column;
  865. align-items: center;
  866. margin: 10rpx 0;
  867. image {
  868. width: 98rpx;
  869. height: 98rpx;
  870. }
  871. text {
  872. font-size: 24rpx;
  873. color: #666;
  874. margin-top: 10rpx;
  875. }
  876. }
  877. }
  878. }
  879. .notice {
  880. padding: 0 30rpx;
  881. }
  882. .sale-group {
  883. padding: 20rpx 30rpx;
  884. .sale-content {
  885. border-radius: 20rpx;
  886. background-image: linear-gradient(45deg, #EB4C63, #FFA470);
  887. padding: 20rpx 0;
  888. .title {
  889. display: flex;
  890. align-items: center;
  891. justify-content: space-between;
  892. color: #FFF;
  893. font-weight: bold;
  894. padding: 0 30rpx;
  895. .more {
  896. display: flex;
  897. align-items: center;
  898. font-size: 24rpx;
  899. font-weight: normal;
  900. image {
  901. width: 24rpx;
  902. height: 24rpx;
  903. }
  904. }
  905. }
  906. .goods-scroll {
  907. white-space: nowrap;
  908. padding: 20rpx 15rpx 0 15rpx;
  909. .goods-item {
  910. display: inline-block;
  911. width: 240rpx;
  912. padding: 15rpx;
  913. margin: 0 10rpx;
  914. background-color: #FFF;
  915. border-radius: 10rpx;
  916. image {
  917. width: 210rpx;
  918. height: 210rpx;
  919. }
  920. .goods-name {
  921. font-size: 26rpx;
  922. color: #333;
  923. width: 240rpx;
  924. margin: 6rpx 0;
  925. word-break: break-all;
  926. white-space: pre-wrap;
  927. text-overflow: ellipsis;
  928. display: -webkit-box;
  929. line-height: 1.2;
  930. -webkit-box-orient: vertical;
  931. -webkit-line-clamp: 2;
  932. overflow: hidden;
  933. }
  934. .tags {
  935. display: inline-block;
  936. font-size: 20rpx;
  937. padding: 6rpx;
  938. background-color: #FCE9EC;
  939. color: #EB4C63;
  940. margin: 6rpx 0;
  941. }
  942. .price {
  943. font-size: 32rpx;
  944. font-weight: bold;
  945. color: #EB4C63;
  946. }
  947. }
  948. }
  949. }
  950. }
  951. .goods-list {
  952. .title {
  953. text-align: center;
  954. color: #333;
  955. display: flex;
  956. align-items: center;
  957. justify-content: center;
  958. font-size: 32rpx;
  959. font-weight: bold;
  960. .line {
  961. display: inline-block;
  962. width: 200rpx;
  963. height: 2rpx;
  964. margin: 0 30rpx;
  965. background-color: #FFA470;
  966. }
  967. }
  968. .list-group {
  969. display: flex;
  970. align-items: center;
  971. flex-wrap: wrap;
  972. padding: 15rpx;
  973. box-sizing: border-box;
  974. .list-item-content {
  975. width: 50%;
  976. padding: 15rpx;
  977. box-sizing: border-box;
  978. .list-item {
  979. padding: 15rpx;
  980. background-color: #FFF;
  981. border-radius: 10rpx;
  982. image {
  983. width: 100%;
  984. }
  985. .goods-name {
  986. font-size: 28rpx;
  987. color: #333;
  988. margin: 6rpx 0;
  989. word-break: break-all;
  990. white-space: pre-wrap;
  991. text-overflow: ellipsis;
  992. display: -webkit-box;
  993. line-height: 1.4;
  994. -webkit-box-orient: vertical;
  995. -webkit-line-clamp: 2;
  996. overflow: hidden;
  997. }
  998. .tags {
  999. display: inline-block;
  1000. font-size: 20rpx;
  1001. padding: 6rpx;
  1002. background-color: #FCE9EC;
  1003. color: #EB4C63;
  1004. margin: 6rpx 0;
  1005. }
  1006. .price {
  1007. font-size: 32rpx;
  1008. font-weight: bold;
  1009. color: #EB4C63;
  1010. }
  1011. }
  1012. }
  1013. }
  1014. }
  1015. }
  1016. </style>