Browse Source

首页登录校验删除

zhanghui 1 year ago
parent
commit
94b44e9c52
3 changed files with 31 additions and 162 deletions
  1. 9 3
      api/groupon.js
  2. 5 41
      pages/index/diy/components/latestGroupBuying.vue
  3. 17 118
      pages/index/diy/index_mall.vue

+ 9 - 3
api/groupon.js

@@ -77,17 +77,23 @@ export function grouponMngList(index,data) {
 
 // 查询最新团购列表
 export function latestGroupon(data) {
-    return request.get("/v1/groupon/latest",data);
+    return request.get("/v1/groupon/latest",data,{
+        noAuth : true, //noAut 为true时前端不校验登录
+    });
 }
 
 // 查询历史团购数据
 export function historyGroupon(data) {
-    return request.get("/v1/groupon/history",data);
+    return request.get("/v1/groupon/history",data,{
+        noAuth : true,
+    });
 }
 
 // 团购详情
 export function detailGroupon(data) {
-    return request.get("/v1/groupon/detail",data);
+    return request.get("/v1/groupon/detail",data,{
+        noAuth : true,
+    });
 }
 
 // 商品详情接口

+ 5 - 41
pages/index/diy/components/latestGroupBuying.vue

@@ -29,7 +29,7 @@
 						¥{{ e.minPrice || 0.00 }} ~ ¥ {{ e.maxPrice || 0.00 }}
 					</view>
 				</view>
-				<view class="introduce" @click="goToDetail(e)">
+				<view class="introduce">
 					<view>
 						{{ e.mainTitle || '测试名字' }}
 					</view>
@@ -43,7 +43,7 @@
 							<image v-if="index < 4" class="avatar-group_1" referrerpolicy="no-referrer"
 								:src="item.userAvatar || `http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg`" />
 						</block>
-						
+
 						<text class="red">{{ e.grouponUserTotal }}人</text>
 						<text class="yellow">正在参团中</text>
 					</view>
@@ -89,7 +89,7 @@
 					<image src="http://www.gzzzyd.com/groupon/home_slices/分享@2x.png" mode="scaleToFill" />
 					<text>分享有礼</text>
 				</button>
-				<button class="now">
+				<button class="now" @click="goToDetail(e)">
 					<image src="http://www.gzzzyd.com/groupon/home_slices/购物@2x.png" mode="scaleToFill" />
 					<text>立即下单</text>
 				</button>
@@ -101,7 +101,6 @@
 
 <script>
 import productConSwiperGroupbuying from "@/components/productConSwiperGroupbuying";
-import { getGoodsInfo, getCategoryTwo } from '@/api/home.js'
 import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '@/api/groupon.js'
 export default {
 	components: {
@@ -181,6 +180,7 @@ export default {
 		getLatestGroupon() {
 			let longitude = uni.getStorageSync('user_longitude');
 			let latitude = uni.getStorageSync('user_latitude');
+			console.log("+++++++++++++++++++++++++++")
 			let that = this;
 			latestGroupon({
 				current: 1,
@@ -205,42 +205,6 @@ export default {
 				that.grouponData = res.data.records;
 			})
 		},
-		clickNav (e) {
-			this.typeId = e.id
-			this.getGoodsPage(e.id)
-		},
-		getCategoryTwo (Id) {
-			getCategoryTwo({
-				parentId: Id
-			}).then(res => {
-				this.navigationList2 = res.data
-				if (res.data.length > 0) {
-					this.getGoodsPage(res.data[0].id)
-				}
-			})
-		},
-		getGoodsPage (typeId) {
-			uni.showLoading({ title: '商品加载中' });
-			getGoodsInfo({
-				zoneType: 3,
-				goodsCategoryId: this.typeId,
-				current: 1,
-				size: 100
-			}).then(res => {
-				this.tempArr = []
-				this.tempArr = res.data
-				uni.hideLoading();
-				uni.stopPullDownRefresh()
-			})
-		},
-		// 首发新品切换
-		ProductNavTab (type, index) {
-			this.ProductNavindex = index;
-			this.$emit('changeTab', type);
-		},
-		goDetail (item) {
-			this.$emit('detail', item);
-		}
 	}
 }
 </script>
@@ -466,7 +430,7 @@ export default {
 }
 
 .a-m {
-	
+
 	padding: 0 30rpx;
 	padding-bottom: 20rpx;
 	min-height: 60rpx;

+ 17 - 118
pages/index/diy/index_mall.vue

@@ -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) {