|
@@ -47,15 +47,15 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="good-list">
|
|
|
- <latestGroupBuying @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId" -
|
|
|
+ <latestGroupBuying :iSshowH="true" :currentId="currentId" -
|
|
|
:isSortType="false" :positionInfo="positionInfo" ref="latestGroupBuying"></latestGroupBuying>
|
|
|
</view>
|
|
|
|
|
|
- <view v-if="!isLogin">
|
|
|
- <u-skeleton :loading="true" rows="20" :animate="true"></u-skeleton>
|
|
|
- </view>
|
|
|
- <view v-else>
|
|
|
- </view>
|
|
|
+<!-- <view v-if="!isLogin">-->
|
|
|
+<!-- <u-skeleton :loading="true" rows="20" :animate="true"></u-skeleton>-->
|
|
|
+<!-- </view>-->
|
|
|
+<!-- <view v-else>-->
|
|
|
+<!-- </view>-->
|
|
|
|
|
|
</view>
|
|
|
<u-popup :round="15" :show="showTips" class="TipsPop" mode="center" @close="showTips = false" @open="() => { }">
|
|
@@ -103,9 +103,7 @@ import {
|
|
|
} from "vuex";
|
|
|
import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage, getIndexData, getGoodsInfo } from '../../../api/home.js'
|
|
|
import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '../../../api/groupon.js'
|
|
|
-import {
|
|
|
- goShopDetail
|
|
|
-} from '@/libs/order.js';
|
|
|
+
|
|
|
import UButton from "../../../uni_modules/uview-ui/components/u-button/u-button";
|
|
|
export default {
|
|
|
components: {
|
|
@@ -194,13 +192,13 @@ export default {
|
|
|
|
|
|
},
|
|
|
watch: {
|
|
|
- isLogin: {
|
|
|
- deep: true, //深度监听设置为 true
|
|
|
- handler: function (newV, oldV) {
|
|
|
- this.getAdsList()
|
|
|
- this.getLatestGroupon()
|
|
|
- }
|
|
|
- }
|
|
|
+ // isLogin: {
|
|
|
+ // deep: true, //深度监听设置为 true
|
|
|
+ // handler: function (newV, oldV) {
|
|
|
+ // this.getAdsList()
|
|
|
+ // this.getLatestGroupon()
|
|
|
+ // }
|
|
|
+ // }
|
|
|
},
|
|
|
methods: {
|
|
|
|
|
@@ -312,37 +310,8 @@ export default {
|
|
|
this.navigationList.unshift(tuiJian)
|
|
|
})
|
|
|
},
|
|
|
- menusTap (url, zoneType) {
|
|
|
- let that = this
|
|
|
- // #ifdef H5
|
|
|
- location.href = url
|
|
|
- // #endif
|
|
|
- // #ifdef MP || APP-PLUS
|
|
|
- if (zoneType == 8) {
|
|
|
- //共富取消中间过渡界面
|
|
|
- getGoodsInfo(that.where).then(res => {
|
|
|
- let list = res.data;
|
|
|
- if (that.where.zoneType == 8 && list.length == 1) {
|
|
|
- // 自动跳转共富1580商品详情
|
|
|
- that.godDetail(list[0])
|
|
|
- }
|
|
|
- })
|
|
|
- } else {
|
|
|
- uni.navigateTo({
|
|
|
- url: "/pages/goods/goods_list_mall/index?zoneType=" + zoneType + "&title=" + url
|
|
|
- });
|
|
|
- }
|
|
|
- // #endif
|
|
|
- },
|
|
|
- // 去详情页
|
|
|
- godDetail (item) {
|
|
|
- goShopDetail(item, this.uid).then(res => {
|
|
|
- uni.navigateTo({
|
|
|
- url: `/pages/goods_details/index?id=${item.id}`
|
|
|
- + "&zoneType=" + item.zoneType
|
|
|
- })
|
|
|
- })
|
|
|
- },
|
|
|
+
|
|
|
+
|
|
|
noticeClose () {
|
|
|
this.noticeShow = false
|
|
|
},
|
|
@@ -372,77 +341,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- // 促销列表的点击事件;
|
|
|
- changeTab (type) {
|
|
|
- this.goodType = type;
|
|
|
- this.tempArr = [];
|
|
|
- this.page = 1;
|
|
|
- this.loadend = false;
|
|
|
- let onloadH = true;
|
|
|
- this.getGroomList(onloadH);
|
|
|
- },
|
|
|
- // 精品推荐
|
|
|
- getGroomList (onloadH) {
|
|
|
- let that = this;
|
|
|
- let type = that.goodType;
|
|
|
- if (that.loadend) return false;
|
|
|
- if (that.loading) return false;
|
|
|
- if (onloadH) {
|
|
|
- that.$set(that, 'iSshowH', true);
|
|
|
- }
|
|
|
- uni.request({
|
|
|
- url: 'api/groom/list',
|
|
|
- success: res => {
|
|
|
- that.$set(that, 'iSshowH', false);
|
|
|
- let maxPage = Math.ceil(this.numConfig / this.limit);
|
|
|
- let list = res.data.list,
|
|
|
- loadend = list.length < that.limit || that.page >= maxPage;
|
|
|
- let tempArr = that.$util.SplitArray(list, that.tempArr);
|
|
|
- that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
|
|
|
- that.loadend = loadend;
|
|
|
- that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
|
|
|
- that.page = that.page + 1;
|
|
|
- that.loading = false;
|
|
|
- }
|
|
|
- })
|
|
|
- // getGroomList(type, {
|
|
|
- // page: that.page,
|
|
|
- // limit: this.numConfig
|
|
|
- // })
|
|
|
- // .then(({
|
|
|
- // data
|
|
|
- // }) => {
|
|
|
- // that.$set(that, 'iSshowH', false);
|
|
|
- // let maxPage = Math.ceil(this.numConfig / this.limit);
|
|
|
- // let list = data.list,
|
|
|
- // loadend = list.length < that.limit || that.page >= maxPage;
|
|
|
- // let tempArr = that.$util.SplitArray(list, that.tempArr);
|
|
|
- // that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
|
|
|
- // that.loadend = loadend;
|
|
|
- // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
|
|
|
- // that.page = that.page + 1;
|
|
|
- // that.loading = false;
|
|
|
- // })
|
|
|
- // .catch(res => {
|
|
|
- // that.loading = false;
|
|
|
- // that.loadTitle = that.$t(`加载更多`);
|
|
|
- // });
|
|
|
- },
|
|
|
- goDetail (item) {
|
|
|
- goShopDetail(item, this.$store.state.app.uid).then(res => {
|
|
|
- uni.navigateTo({
|
|
|
- url: `/pages/goods_details/index?id=${item.id}`
|
|
|
- });
|
|
|
- });
|
|
|
- },
|
|
|
- // 去商品详情
|
|
|
- goGoodsDetail (item) {
|
|
|
- goShopDetail(item, this.uid).then(res => {
|
|
|
- uni.navigateTo({
|
|
|
- url: `/pages/goods_details/index?id=${item.id}`
|
|
|
- });
|
|
|
- });
|
|
|
- },
|
|
|
+
|
|
|
clickNav (e) {
|
|
|
this.current = e.index
|
|
|
// if (e.index > 0) {
|