index_mall.vue 23 KB

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