index_mall.vue 23 KB

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