index_mall.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750
  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" @change="e => current = e.current" :autoplay="false">
  22. <view slot="indicator" class="indicator">
  23. <view class="indicator__dot"
  24. v-for="(item, index) in swiperList"
  25. :key="index"
  26. :class="[index === current && 'indicator__dot--active']">
  27. </view>
  28. </view>
  29. </u-swiper>
  30. </view>
  31. <view class="header-group">
  32. <view class="tabs">
  33. <u-tabs class="defalt-utabs" :is-scroll="false" :list="navigationList" @click="clickNav" lineColor="#B22338" :inactiveStyle="{ color: '#999999' }"
  34. :activeStyle="{ color: '#B22338', fontWeight: 'bold' }" keyName="title"></u-tabs>
  35. </view>
  36. </view>
  37. <view class="good-list">
  38. <latestGroupBuying @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
  39. - :isSortType="false" :positionInfo="positionInfo" ref="latestGroupBuying"></latestGroupBuying>
  40. </view>
  41. <view v-if="!isLogin">
  42. <u-skeleton :loading="true" rows="20" :animate="true"></u-skeleton>
  43. </view>
  44. <view v-else>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. import headerSerch from './components/headerSerch';
  50. import latestGroupBuying from './components/latestGroupBuying';
  51. import {
  52. toLogin
  53. } from '@/libs/login.js';
  54. import {
  55. mapGetters
  56. } from "vuex";
  57. import {getAdsList, getNoticeList, getCategoryOne,getGoodsPage, getIndexData, getGoodsInfo} from '../../../api/home.js'
  58. import {latestGroupon, historyGroupon, detailGroupon, goodsDetail} from '../../../api/groupon.js'
  59. import {
  60. goShopDetail
  61. } from '@/libs/order.js';
  62. export default {
  63. components: {
  64. headerSerch,
  65. latestGroupBuying
  66. },
  67. data () {
  68. return {
  69. currentId: 0,
  70. noticeShow: false,
  71. noticeContent: '',
  72. tempArr: [],
  73. where: {
  74. zoneType: 8,
  75. current: 1,
  76. size: 20,
  77. },
  78. isSortType: 0,
  79. current: 0,
  80. noticeList: [],
  81. notice: [
  82. '寒雨连江夜入吴',
  83. '平明送客楚山孤',
  84. '洛阳亲友如相问',
  85. '一片冰心在玉壶'
  86. ],
  87. swiperList: [
  88. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  89. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  90. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  91. ],
  92. navigationList: [{
  93. title: '最新团购',
  94. id: '0'
  95. }, {
  96. title: '历史团购',
  97. id: '1'
  98. }],
  99. positionInfo: {
  100. address: '',
  101. longitude: '106.62502', //经度
  102. latitude: '26.65214', //纬度
  103. },
  104. user_latitude: '',
  105. user_longitude: ''
  106. }
  107. },
  108. computed: mapGetters(['isLogin']),
  109. created () {
  110. this.getAdsList();
  111. this.getLatestGroupon();
  112. this.getCurrentLocation()
  113. },
  114. onMounted (options) {
  115. },
  116. onLoad (options) {
  117. },
  118. onShow () {
  119. },
  120. updated () {
  121. },
  122. watch: {
  123. isLogin: {
  124. deep: true, //深度监听设置为 true
  125. handler: function (newV, oldV) {
  126. this.getAdsList()
  127. this.getLatestGroupon()
  128. }
  129. }
  130. },
  131. methods: {
  132. // 通过自带的方法获取到当前的经纬度,调用方法获取到地址获取到地址的中文信息
  133. getCurrentLocation () {
  134. let that = this //在uniapp中药定义一下this才能使用
  135. uni.getLocation({
  136. type: 'wgs84',
  137. success: function (res) {
  138. console.log("dizhixinxi -> ", res)
  139. that.positionInfo.longitude = res.longitude;
  140. that.positionInfo.latitude = res.latitude;
  141. // that.loAcquire(that.positionInfo.longitude, that.positionInfo.latitude)
  142. }
  143. });
  144. },
  145. // 获取当前地址
  146. loAcquire (longitude, latitude) {
  147. let that = this;
  148. // uni.showLoading({
  149. // title: '加载中',
  150. // mask: true
  151. // });
  152. let str = `output=jsonp&key='此处输入你申请的密钥'=${latitude},${longitude}` //记得在这里要输入密钥哦!
  153. console.log(this.$jsonp);
  154. this.$jsonp('https://apis.map.qq.com/ws/geocoder/v1/?', {}).then(res => {
  155. console.log(res);
  156. uni.hideLoading();
  157. if (res.status == 0) {
  158. that.positionInfo.address = '当前位置是:' + res.result.address_component.street_number; //当前定位
  159. }
  160. })
  161. },
  162. pullResh () {
  163. if (this.current == 0) {
  164. uni.showLoading({ title: '刷新中' });
  165. this.getAdsList()
  166. this.getLatestGroupon()
  167. } else {
  168. this.$refs.latestGroupBuying.getGoodsPage()
  169. }
  170. },
  171. getLatestGroupon() {
  172. // let that = this;
  173. // latestGroupon({
  174. // current: 1,
  175. // size: 1,
  176. // longitude: that.positionInfo.longitude,
  177. // latitude: that.positionInfo.latitude
  178. // }).then(res => {
  179. // console.log(res)
  180. // })
  181. },
  182. getGoodsInfo () {
  183. getGoodsInfo({
  184. current: 1,
  185. size: 50,
  186. isRecom: 1
  187. }).then(res => {
  188. this.tempArr = res.data
  189. uni.stopPullDownRefresh()
  190. uni.hideLoading();
  191. })
  192. },
  193. getBroGoodsInfo () {
  194. getGoodsInfo({
  195. current: 1,
  196. size: 50,
  197. zoneType: 6
  198. }).then(res => {
  199. this.tempArrBao = res.data
  200. })
  201. },
  202. getCategoryOne () {
  203. getCategoryOne().then(res => {
  204. this.navigationList = []
  205. let tuiJian = {
  206. title: '推荐',
  207. id: '0'
  208. }
  209. this.navigationList = res.data
  210. this.navigationList.unshift(tuiJian)
  211. })
  212. },
  213. menusTap (url, zoneType) {
  214. let that = this
  215. // #ifdef H5
  216. location.href = url
  217. // #endif
  218. // #ifdef MP || APP-PLUS
  219. if (zoneType == 8) {
  220. //共富取消中间过渡界面
  221. getGoodsInfo(that.where).then(res => {
  222. let list = res.data;
  223. if (that.where.zoneType == 8 && list.length == 1) {
  224. // 自动跳转共富1580商品详情
  225. that.godDetail(list[0])
  226. }
  227. })
  228. } else {
  229. uni.navigateTo({
  230. url: "/pages/goods/goods_list_mall/index?zoneType=" + zoneType + "&title=" + url
  231. });
  232. }
  233. // #endif
  234. },
  235. // 去详情页
  236. godDetail (item) {
  237. goShopDetail(item, this.uid).then(res => {
  238. uni.navigateTo({
  239. url: `/pages/goods_details/index?id=${item.id}`
  240. + "&zoneType=" + item.zoneType
  241. })
  242. })
  243. },
  244. noticeClose () {
  245. this.noticeShow = false
  246. },
  247. goNoticeDetail (value) {
  248. this.noticeContent = this.noticeList[value].content
  249. this.noticeShow = true
  250. },
  251. getNoticeList () {
  252. getNoticeList().then(res => {
  253. this.notice = []
  254. this.noticeList = res.data
  255. res.data.forEach(element => {
  256. this.notice.push(element.title)
  257. });
  258. })
  259. },
  260. getAdsList () {
  261. let that = this;
  262. getAdsList({
  263. type: 2
  264. }).then(res => {
  265. if (res.data.length > 0) {
  266. that.swiperList = []
  267. res.data.forEach(element => {
  268. that.swiperList.push(element.imageUrl)
  269. });
  270. }
  271. });
  272. },
  273. // 促销列表的点击事件;
  274. changeTab (type) {
  275. this.goodType = type;
  276. this.tempArr = [];
  277. this.page = 1;
  278. this.loadend = false;
  279. let onloadH = true;
  280. this.getGroomList(onloadH);
  281. },
  282. // 精品推荐
  283. getGroomList (onloadH) {
  284. let that = this;
  285. let type = that.goodType;
  286. if (that.loadend) return false;
  287. if (that.loading) return false;
  288. if (onloadH) {
  289. that.$set(that, 'iSshowH', true);
  290. }
  291. uni.request({
  292. url: 'api/groom/list',
  293. success: res => {
  294. that.$set(that, 'iSshowH', false);
  295. let maxPage = Math.ceil(this.numConfig / this.limit);
  296. let list = res.data.list,
  297. loadend = list.length < that.limit || that.page >= maxPage;
  298. let tempArr = that.$util.SplitArray(list, that.tempArr);
  299. that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  300. that.loadend = loadend;
  301. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  302. that.page = that.page + 1;
  303. that.loading = false;
  304. }
  305. })
  306. // getGroomList(type, {
  307. // page: that.page,
  308. // limit: this.numConfig
  309. // })
  310. // .then(({
  311. // data
  312. // }) => {
  313. // that.$set(that, 'iSshowH', false);
  314. // let maxPage = Math.ceil(this.numConfig / this.limit);
  315. // let list = data.list,
  316. // loadend = list.length < that.limit || that.page >= maxPage;
  317. // let tempArr = that.$util.SplitArray(list, that.tempArr);
  318. // that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  319. // that.loadend = loadend;
  320. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  321. // that.page = that.page + 1;
  322. // that.loading = false;
  323. // })
  324. // .catch(res => {
  325. // that.loading = false;
  326. // that.loadTitle = that.$t(`加载更多`);
  327. // });
  328. },
  329. goDetail (item) {
  330. goShopDetail(item, this.$store.state.app.uid).then(res => {
  331. uni.navigateTo({
  332. url: `/pages/goods_details/index?id=${item.id}`
  333. });
  334. });
  335. },
  336. // 去商品详情
  337. goGoodsDetail (item) {
  338. goShopDetail(item, this.uid).then(res => {
  339. uni.navigateTo({
  340. url: `/pages/goods_details/index?id=${item.id}`
  341. });
  342. });
  343. },
  344. clickNav (e) {
  345. this.current = e.index
  346. // if (e.index > 0) {
  347. this.currentId = e.id
  348. // }
  349. // console.log("currentId ->", this.currentId)
  350. }
  351. }
  352. }
  353. </script>
  354. <style lang="scss" scoped>
  355. page {
  356. background-color: #ee4040;
  357. }
  358. .header-group {
  359. background-color: #F9F9F9;
  360. .search-group {
  361. display: flex;
  362. align-items: center;
  363. justify-content: space-between;
  364. padding: 30rpx 30rpx 10rpx 30rpx;
  365. .logo {
  366. width: 138rpx;
  367. height: 46rpx;
  368. }
  369. .message {
  370. line-height: 1;
  371. image {
  372. width: 48rpx;
  373. height: 48rpx;
  374. }
  375. }
  376. .search {
  377. flex: 1;
  378. padding: 0 30rpx;
  379. .searchBox {
  380. padding: 0 30rpx;
  381. display: flex;
  382. align-items: center;
  383. background-color: #FFF;
  384. border-radius: 100rpx;
  385. height: 60rpx;
  386. image {
  387. width: 28rpx;
  388. height: 28rpx;
  389. padding-right: 20rpx;
  390. }
  391. text {
  392. font-size: 24rpx;
  393. color: #999;
  394. }
  395. }
  396. }
  397. }
  398. .tabs {
  399. padding: 0 20rpx;
  400. }
  401. }
  402. .tab-content {
  403. .swiper-group {
  404. padding: 20rpx 30rpx 10rpx 30rpx;
  405. background-image: linear-gradient(to bottom, #EB4C63, #F9F9F9);
  406. }
  407. .grid-box {
  408. padding: 10rpx 30rpx 20rpx 30rpx;
  409. .grid-group {
  410. padding: 20rpx 0;
  411. border-radius: 20rpx;
  412. background-color: #FFF;
  413. display: flex;
  414. align-items: center;
  415. flex-wrap: wrap;
  416. .grid-item {
  417. width: 33.333%;
  418. display: flex;
  419. flex-direction: column;
  420. align-items: center;
  421. margin: 10rpx 0;
  422. image {
  423. width: 98rpx;
  424. height: 98rpx;
  425. }
  426. text {
  427. font-size: 24rpx;
  428. color: #666;
  429. margin-top: 10rpx;
  430. }
  431. }
  432. }
  433. }
  434. .notice {
  435. padding: 0 30rpx;
  436. }
  437. .sale-group {
  438. padding: 20rpx 30rpx;
  439. .sale-content {
  440. border-radius: 20rpx;
  441. background-image: linear-gradient(45deg, #EB4C63, #FFA470);
  442. padding: 20rpx 0;
  443. .title {
  444. display: flex;
  445. align-items: center;
  446. justify-content: space-between;
  447. color: #FFF;
  448. font-weight: bold;
  449. padding: 0 30rpx;
  450. .more {
  451. display: flex;
  452. align-items: center;
  453. font-size: 24rpx;
  454. font-weight: normal;
  455. image {
  456. width: 24rpx;
  457. height: 24rpx;
  458. }
  459. }
  460. }
  461. .goods-scroll {
  462. white-space: nowrap;
  463. padding: 20rpx 15rpx 0 15rpx;
  464. .goods-item {
  465. display: inline-block;
  466. width: 240rpx;
  467. padding: 15rpx;
  468. margin: 0 10rpx;
  469. background-color: #FFF;
  470. border-radius: 10rpx;
  471. image {
  472. width: 210rpx;
  473. height: 210rpx;
  474. }
  475. .goods-name {
  476. font-size: 26rpx;
  477. color: #333;
  478. width: 240rpx;
  479. margin: 6rpx 0;
  480. word-break: break-all;
  481. white-space: pre-wrap;
  482. text-overflow: ellipsis;
  483. display: -webkit-box;
  484. line-height: 1.2;
  485. -webkit-box-orient: vertical;
  486. -webkit-line-clamp: 2;
  487. overflow: hidden;
  488. }
  489. .tags {
  490. display: inline-block;
  491. font-size: 20rpx;
  492. padding: 6rpx;
  493. background-color: #FCE9EC;
  494. color: #EB4C63;
  495. margin: 6rpx 0;
  496. }
  497. .price {
  498. font-size: 32rpx;
  499. font-weight: bold;
  500. color: #EB4C63;
  501. }
  502. }
  503. }
  504. }
  505. }
  506. .goods-list {
  507. .title {
  508. text-align: center;
  509. color: #333;
  510. display: flex;
  511. align-items: center;
  512. justify-content: center;
  513. font-size: 32rpx;
  514. font-weight: bold;
  515. .line {
  516. display: inline-block;
  517. width: 200rpx;
  518. height: 2rpx;
  519. margin: 0 30rpx;
  520. background-color: #FFA470;
  521. }
  522. }
  523. .list-group {
  524. display: flex;
  525. align-items: center;
  526. flex-wrap: wrap;
  527. padding: 15rpx;
  528. box-sizing: border-box;
  529. .list-item-content {
  530. width: 50%;
  531. padding: 15rpx;
  532. box-sizing: border-box;
  533. .list-item {
  534. padding: 15rpx;
  535. background-color: #FFF;
  536. border-radius: 10rpx;
  537. image {
  538. width: 100%;
  539. }
  540. .goods-name {
  541. font-size: 28rpx;
  542. color: #333;
  543. margin: 6rpx 0;
  544. word-break: break-all;
  545. white-space: pre-wrap;
  546. text-overflow: ellipsis;
  547. display: -webkit-box;
  548. line-height: 1.4;
  549. -webkit-box-orient: vertical;
  550. -webkit-line-clamp: 2;
  551. overflow: hidden;
  552. }
  553. .tags {
  554. display: inline-block;
  555. font-size: 20rpx;
  556. padding: 6rpx;
  557. background-color: #FCE9EC;
  558. color: #EB4C63;
  559. margin: 6rpx 0;
  560. }
  561. .price {
  562. font-size: 32rpx;
  563. font-weight: bold;
  564. color: #EB4C63;
  565. }
  566. }
  567. }
  568. }
  569. }
  570. }
  571. .nav-bar_2 {
  572. width: 374px;
  573. margin-top: 6px;
  574. padding: 10px 9px 7px 16px;
  575. }
  576. .text_3 {
  577. overflow-wrap: break-word;
  578. color: rgba(51, 51, 51, 1);
  579. font-size: 18px;
  580. letter-spacing: 2px;
  581. font-family: STYuanti-SC-Regular;
  582. font-weight: NaN;
  583. text-align: left;
  584. white-space: nowrap;
  585. line-height: 24px;
  586. margin-top: 3px;
  587. }
  588. .applet-top-bar_1 {
  589. width: 90px;
  590. height: 30px;
  591. }
  592. .block_2 {
  593. display: flex;
  594. justify-content: space-around;
  595. box-shadow: 0px 2px 4px 0px rgba(178, 35, 56, 0.05);
  596. background-image: url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/7ac954eaf57b4d42b263ef296c3fa351_mergeImage.png);
  597. align-self: center;
  598. margin: 20rpx;
  599. margin-top: 4px;
  600. padding: 15px 8px 15px 8px;
  601. }
  602. .image-text_9 {
  603. width: 228px;
  604. }
  605. .icon_1 {
  606. width: 16px;
  607. height: 16px;
  608. margin: 2px 0 2px 0;
  609. }
  610. .text-group_1 {
  611. overflow-wrap: break-word;
  612. color: rgba(51, 51, 51, 1);
  613. font-size: 12px;
  614. text-align: left;
  615. white-space: nowrap;
  616. line-height: 20px;
  617. max-width: 190px;
  618. display: block;
  619. white-space: pre-line;
  620. }
  621. .flex-row {
  622. display: flex;
  623. }
  624. .image-text_10 {
  625. width: 56px;
  626. }
  627. .text-group_2 {
  628. overflow-wrap: break-word;
  629. color: rgba(153, 153, 153, 1);
  630. font-size: 10px;
  631. font-weight: NaN;
  632. text-align: right;
  633. line-height: 20px;
  634. }
  635. .icon_2 {
  636. width: 12px;
  637. height: 12px;
  638. margin: 4px 0 4px 0;
  639. }
  640. .indicator {
  641. @include flex(row);
  642. justify-content: center;
  643. &__dot {
  644. height: 6px;
  645. width: 6px;
  646. border-radius: 100px;
  647. background-color: rgba(255, 255, 255, 0.35);
  648. margin: 0 5px;
  649. transition: background-color 0.3s;
  650. &--active {
  651. background-color: #ffffff;
  652. }
  653. }
  654. }
  655. .indicator-num {
  656. padding: 2px 0;
  657. background-color: rgba(0, 0, 0, 0.35);
  658. border-radius: 100px;
  659. width: 35px;
  660. @include flex;
  661. justify-content: center;
  662. &__text {
  663. color: #FFFFFF;
  664. font-size: 12px;
  665. }
  666. }
  667. </style>