index_mall.vue 23 KB

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