zhanghui 1 gadu atpakaļ
vecāks
revīzija
ab727447b9

+ 11 - 44
pages/index/diy/components/latestGroupBuying.vue

@@ -109,6 +109,12 @@ export default {
 	},
 	name: 'promotionList',
 	props: {
+		grouponData:{
+			type:Array,
+			default(){
+				return []
+			}
+		},
 		dataConfig: {
 			type: Object,
 			default: () => { }
@@ -131,13 +137,13 @@ export default {
 		},
 		currentId: {
 			type: String | Number,
-			default: 0
+			default(){
+				return 0
+			}
 		}
 	},
 	watch: {
-		currentId () {
-			this.onLoadData(this.currentId);
-		}
+
 	},
 	data () {
 		return {
@@ -156,16 +162,13 @@ export default {
 			fontColor: "rgba(253,80,47,1)",
 			labelColor: "rgba(29,176,252,1)",
 			typeId: '',
-			grouponData: [],
 			loading: false, //是否加载中
 			loadend: false, //是否加载完毕
 			loadTitle: this.$t(`加载更多`), //提示语
 		};
 	},
 	created () {
-		console.log("created...")
-		this.grouponData = [];
-		this.onLoadData(this.currentId);
+
 	},
 	methods: {
 		goToDetail(item){
@@ -173,42 +176,6 @@ export default {
 				url: `/pages/groupbuying_details/index?id=${item.id}&selfTakeId=${item.selfTake.id}&organizerUserId=${item.organizerUserId}`
 			})
 		},
-		onLoadData (currentId) {
-			// 最新团购
-			if (currentId == 0) {
-				this.getLatestGroupon()
-			}
-			// 历史团购
-			if (currentId == 1) {
-				this.getHistoryGroupon()
-			}
-		},
-		getLatestGroupon() {
-			let longitude = uni.getStorageSync('user_longitude');
-			let latitude = uni.getStorageSync('user_latitude');
-			let that = this;
-			latestGroupon({
-				current: 1,
-				size: 1,
-				longitude: longitude,
-				latitude: latitude
-			}).then(res => {
-				this.grouponData = res.data.records;
-			})
-		},
-		getHistoryGroupon() {
-			let longitude = uni.getStorageSync('user_longitude');
-			let latitude = uni.getStorageSync('user_latitude');
-			let that = this;
-			historyGroupon({
-				current: 1,
-				size: 1,
-				longitude: longitude,
-				latitude: latitude
-			}).then(res => {
-				that.grouponData = res.data.records;
-			})
-		},
 	}
 }
 </script>

+ 21 - 15
pages/index/diy/index_mall.vue

@@ -40,23 +40,21 @@
 
 			<view class="header-group">
 				<view class="tabs index_tabs">
-					<u-tabs class="defalt-utabs" :is-scroll="false" :list="navigationList" @click="clickNav" lineColor="#B22338"
+					<u-tabs class="defalt-utabs" :is-scroll="false" :list="navigationList" @click="clickNav" lineColor="#B22338" :current="tabIndex"
 						:inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
 						keyName="title"></u-tabs>
 				</view>
 			</view>
 
-			<view class="good-list">
-				<latestGroupBuying  :iSshowH="true"  :currentId="currentId" -
-					:isSortType="false" :positionInfo="positionInfo" ref="latestGroupBuying"></latestGroupBuying>
+			<view :style="{ height: swiperHeight }">
+				<swiper  :style="{ height: swiperHeight }" :current="tabIndex" @change="swiperChange">
+					<swiper-item v-for="(tab, i) in navigationList" :key="i">
+						<mescroll-item ref="MescrollItem" :i="i" :index="tabIndex" :currentId="currentId" :tabs="navigationList" :height="swiperHeight" :positionInfo="positionInfo">
+						</mescroll-item>
+					</swiper-item>
+				</swiper>
 			</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="() => { }">
 			<view class="tips">
@@ -92,6 +90,7 @@
 <script>
 let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
 let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
+import MescrollItem from "./module/mescrollUni-item.vue";
 import headerSerch from './components/headerSerch';
 import latestGroupBuying from './components/latestGroupBuying';
 import { getAddress } from '../../../api/wxMap'
@@ -107,12 +106,15 @@ import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '../..
 import UButton from "../../../uni_modules/uview-ui/components/u-button/u-button";
 export default {
 	components: {
+		MescrollItem,
 		UButton,
 		headerSerch,
 		latestGroupBuying
 	},
 	data () {
 		return {
+			swiperHeight:'600px',
+			tabIndex:0,
 			sysHeight: sysHeight,
 			sysHeightTop: sysHeightTop,
 			showTips: true,
@@ -177,16 +179,16 @@ export default {
 		this.getAdsList();
 		this.getLatestGroupon();
 		this.getCurrentLocation()
+		let sysInfo=uni.getSystemInfoSync();
+		console.log("设备信息")
+		console.log(sysInfo)
+		this.swiperHeight= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (200) +'px';
+		console.log(this.swiperHeight)
 	},
 	onMounted (options) {
 	},
 	onLoad (options) {
 
-	},
-	onShow () {
-		let sysInfo=uni.getSystemInfoSync();
-		console.log("设备信息")
-		console.log(sysInfo)
 	},
 	updated () {
 
@@ -201,6 +203,9 @@ export default {
 		// }
 	},
 	methods: {
+		swiperChange(e) {
+			this.tabIndex = e.detail.current
+		},
 
 		changeAddress () {
 			uni.chooseLocation({
@@ -343,6 +348,7 @@ export default {
 		},
 
 		clickNav (e) {
+			this.tabIndex=e.index
 			this.current = e.index
 			// if (e.index > 0) {
 			this.currentId = e.id

+ 155 - 0
pages/index/diy/module/mescrollUni-item.vue

@@ -0,0 +1,155 @@
+<template>
+	<!--
+    swiper中的transfrom会使fixed失效,此时用height固定高度;
+    swiper中无法触发mescroll-mixins.js的onPageScroll和onReachBottom方法,只能用mescroll-uni,不能用mescroll-body
+    -->
+	<!-- ref动态生成: 字节跳动小程序编辑器不支持一个页面存在相同的ref (如不考虑字节跳动小程序可固定值为 ref="mescrollRef") -->
+	<!-- top的高度等于悬浮菜单tabs的高度 -->
+	<mescroll-uni :ref="'mescrollRef' + i" @init="mescrollInit" :height="height" :down="downOption" @down="downCallback"
+		:up="upOption" @up="upCallback" @emptyclick="emptyClick">
+		<!-- 数据列表 -->
+		<latestGroupBuying  :iSshowH="true"  :currentId="currentId" :grouponData ="list"
+							:isSortType="false" :positionInfo="positionInfo" ref="latestGroupBuying"></latestGroupBuying>
+	</mescroll-uni>
+</template>
+
+<script>
+	import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
+	import MescrollMoreItemMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mixins/mescroll-more-item.js";
+	import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '@/api/groupon.js'
+	import latestGroupBuying from '../components/latestGroupBuying';
+	export default {
+		mixins: [MescrollMixin, MescrollMoreItemMixin], // 注意此处还需使用MescrollMoreItemMixin (必须写在MescrollMixin后面)
+		components: {
+			latestGroupBuying
+		},
+
+		data() {
+			return {
+				grouponData:[],
+				downOption: {
+					auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
+				},
+				upOption: {
+					auto: false, // 不自动加载
+					// page: {
+					// 	num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
+					// 	size: 10 // 每页数据的数量
+					// },
+					noMoreSize: 4, //如果列表已无数据,可设置列表的总数量要大于半页才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看; 默认5
+					empty: {
+						icon: '/static/images/empty.png',
+						tip: '暂无内容', // 提示
+						// btnText: '去看看'
+					},
+					textNoMore: '没有更多了'
+				},
+				list: [],
+			}
+		},
+		props: {
+			currentId:{
+				type:Number,
+				default(){
+					return 0
+				}
+			},
+			positionInfo:{
+				type:Object,
+				default(){
+					return {}
+				}
+			},
+			i: Number, // 每个tab页的专属下标 (除了支付宝小程序必须在这里定义, 其他平台都可不用写, 因为已在MescrollMoreItemMixin定义)
+			index: { // 当前tab的下标 (除了支付宝小程序必须在这里定义, 其他平台都可不用写, 因为已在MescrollMoreItemMixin定义)
+				type: Number,
+				default () {
+					return 0
+				}
+			},
+
+			tabs: { // 为了请求数据,演示用,可根据自己的项目判断是否要传
+				type: Array,
+				default () {
+					return []
+				}
+			},
+			height: [Number, String], // mescroll的高度
+
+		},
+		watch:{
+			index(newVal,oldVal){
+			}
+
+		},
+
+		methods: {
+
+			/*下拉刷新的回调 */
+			downCallback() {
+				// 这里加载你想下拉刷新的数据, 比如刷新轮播数据
+				// loadSwiper();
+				// 下拉刷新的回调,默认重置上拉加载列表为第一页 (自动执行 page.num=1, 再触发upCallback方法 )
+				this.mescroll.resetUpScroll()
+			},
+			/*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
+			upCallback(page) {
+				//联网加载数据
+				let httpData = {
+					current: page.num,
+					size: 10,
+				}
+				if (this.index === 0){
+						let longitude = uni.getStorageSync('user_longitude');
+						let latitude = uni.getStorageSync('user_latitude');
+						latestGroupon({
+							current: page.num,
+							size: 10,
+							longitude: longitude,
+							latitude: latitude
+						}).then(res => {
+							this.mescroll.endSuccess(res.data.records.length,res.data.records.length === 10);
+							if (page.num === 1) this.list = []; //如果是第一页需手动制空列表
+							if (res.data.records.length > 0){
+								this.list = this.list.concat(res.data.records); //追加新数据
+							}
+						}).catch((err) => {
+							//联网失败, 结束加载
+							this.mescroll.endErr();
+						})
+				}
+				if (this.index === 1){
+						let longitude = uni.getStorageSync('user_longitude');
+						let latitude = uni.getStorageSync('user_latitude');
+						historyGroupon({
+							current: page.num,
+							size: 10,
+							longitude: longitude,
+							latitude: latitude
+						}).then(res => {
+							this.mescroll.endSuccess(res.data.records.length,res.data.records.length === 10);
+							if (page.num === 1) this.list = []; //如果是第一页需手动制空列表
+							if (res.data.records.length > 0){
+								this.list = this.list.concat(res.data.records); //追加新数据
+							}
+						}).catch((err) => {
+							//联网失败, 结束加载
+							this.mescroll.endErr();
+						})
+				}
+
+			},
+			//点击空布局按钮的回调
+			emptyClick() {
+				uni.showToast({
+					title: '点击了按钮,具体逻辑自行实现'
+				})
+			},
+			// 搜索
+			doSearch() {
+				this.list = []; // 先清空列表,显示加载进度
+				this.mescroll.resetUpScroll();
+			},
+		}
+	}
+</script>