index_mall.vue 25 KB

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