index_mall.vue 25 KB

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