Browse Source

分页组件BUG修复

zhanghui 1 year ago
parent
commit
a5e10f9f43

+ 1 - 1
pages/groupbuying/arrival_verification_list/index.vue

@@ -11,7 +11,7 @@
 				<view :style="{ height: height }" >
 					<swiper :style="{ height: height }" :current="tabIndex" @change="swiperChange">
 						<swiper-item v-for="(tab,index) in navigationList" :key="index">
-							<mescroll-item ref="MescrollItem"  :i="tabIndex" :index="tabIndex" :tabs="navigationList" :height="height">
+							<mescroll-item ref="MescrollItem"  :i="index" :index="tabIndex" :tabs="navigationList" :height="height">
 							</mescroll-item>
 						</swiper-item>
 					</swiper>

+ 2 - 2
pages/groupbuying/arrival_verification_list/module/mescrollUni-item.vue

@@ -26,10 +26,10 @@
 		data() {
 			return {
 				downOption: {
-					auto: true // 不自动加载 (mixin已处理第一个tab触发downCallback)
+					auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
 				},
 				upOption: {
-					auto: true, // 不自动加载
+					auto: false, // 不自动加载
 					// page: {
 					// 	num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
 					// 	size: 10 // 每页数据的数量

+ 9 - 4
pages/groupbuying/distributionPerformance/index.vue

@@ -1,11 +1,9 @@
 <template>
 	<view>
-
 		<view>
-			<mescroll-item ref="MescrollItem"  :i="0" :index="0" :height="height">
+			<mescroll-item ref="MescrollItem"  :i="index" :index="tabIndex" :height="height" v-for="(tab,index) in tabsList" :key="index">
 			</mescroll-item>
 		</view>
-
 	</view>
 </template>
 
@@ -43,7 +41,9 @@ export default {
 	mixins: [colors],
 	data () {
 		return {
-			height:''
+			height:'',
+			tabIndex:0,
+			tabsList:[{name:"分销业绩"}]
 		};
 	},
 	computed: mapGetters(['isLogin']),
@@ -66,6 +66,11 @@ export default {
 	},
 	methods: {
 
+		swiperChange: function (e) {
+			this.currentSwiper = e.detail.current
+		}
+
+
 	}
 }
 </script>

+ 2 - 2
pages/groupbuying/distributionPerformance/module/mescrollUni-item.vue

@@ -37,10 +37,10 @@
 		data() {
 			return {
 				downOption: {
-					auto: true // 不自动加载 (mixin已处理第一个tab触发downCallback)
+					auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
 				},
 				upOption: {
-					auto: true, // 不自动加载
+					auto: false, // 不自动加载
 					// page: {
 					// 	num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
 					// 	size: 10 // 每页数据的数量

+ 1 - 1
pages/groupbuying/groupbuying_order_list/index.vue

@@ -10,7 +10,7 @@
 			</view>
 				<swiper  :style="{ height: height }" :current="tabIndex" @change="swiperChange">
 					<swiper-item v-for="(tab, i) in navigationList" :key="i">
-						<mescroll-item ref="MescrollItem" :i="tabIndex" :index="tabIndex" :tabs="navigationList" :height="height">
+						<mescroll-item ref="MescrollItem" :i="i" :index="tabIndex" :tabs="navigationList" :height="height">
 						</mescroll-item>
 					</swiper-item>
 				</swiper>

+ 2 - 4
pages/groupbuying/groupbuying_order_list/module/mescrollUni-item.vue

@@ -26,10 +26,10 @@
 		data() {
 			return {
 				downOption: {
-					auto: true // 不自动加载 (mixin已处理第一个tab触发downCallback)
+					auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
 				},
 				upOption: {
-					auto: true, // 不自动加载
+					auto: false, // 不自动加载
 					// page: {
 					// 	num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
 					// 	size: 10 // 每页数据的数量
@@ -65,8 +65,6 @@
 		},
 		watch:{
 			index(newVal,oldVal){
-				console.log(newVal,"++++++++++++")
-				this.downCallback();
 			}
 
 		},

+ 13 - 3
pages/groupbuying/myClient/index.vue

@@ -1,10 +1,8 @@
 <template>
 	<view >
 
-
-
 		<view>
-			<mescroll-item ref="MescrollItem"  :i="0" :index="0" :height="height">
+			<mescroll-item ref="MescrollItem"  :i="index" :index="tabIndex" :height="height" v-for="(tab,index) in tabsList" :key="index">
 			</mescroll-item>
 		</view>
 
@@ -45,6 +43,9 @@ export default {
 	mixins: [colors],
 	data () {
 		return {
+			height:'',
+			tabIndex:0,
+			tabsList:[{name:"我的客户"}]
 		};
 	},
 	computed: mapGetters(['isLogin']),
@@ -59,9 +60,18 @@ export default {
 	},
 	onLoad () {
 
+	},
+	onShow(){
+		let sysInfo = uni.getSystemInfoSync()
+		this.height= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (200) +'px';
+		console.log(this.height)
 	},
 	methods: {
 
+		swiperChange: function (e) {
+			this.currentSwiper = e.detail.current
+		}
+
 	}
 }
 </script>

+ 3 - 3
pages/groupbuying/myClient/module/mescrollUni-item.vue

@@ -42,10 +42,10 @@
 		data() {
 			return {
 				downOption: {
-					auto: true // 不自动加载 (mixin已处理第一个tab触发downCallback)
+					auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
 				},
 				upOption: {
-					auto: true, // 不自动加载
+					auto: false, // 不自动加载
 					// page: {
 					// 	num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
 					// 	size: 10 // 每页数据的数量
@@ -62,7 +62,7 @@
 			}
 		},
 		props: {
-			i: Number, // 每个tab页的专属下标 (除了支付宝小程序必须在这里定义, 其他平台都可不用写, 因为已在MescrollMoreItemMixin定义)
+			// i: Number, // 每个tab页的专属下标 (除了支付宝小程序必须在这里定义, 其他平台都可不用写, 因为已在MescrollMoreItemMixin定义)
 			index: { // 当前tab的下标 (除了支付宝小程序必须在这里定义, 其他平台都可不用写, 因为已在MescrollMoreItemMixin定义)
 				type: Number,
 				default () {

+ 9 - 6
pages/groupbuying/pickupVerification/index.vue

@@ -19,13 +19,10 @@
 
 		<view class="tool_list">
 			<view class="title">
-				核销记录
-			</view>
-
-			<view>
-				<mescroll-item ref="MescrollItem"  :i="0" :index="0" :height="height">
-				</mescroll-item>
+				&nbsp;&nbsp;核销记录
 			</view>
+			<mescroll-item ref="MescrollItem"  :i="index" :index="tabIndex" :height="height"  v-for="(tab,index) in tabsList" :key="index">
+			</mescroll-item>
 		</view>
 
 	</view>
@@ -68,6 +65,8 @@ export default {
 		return {
 			height:'750rpx',
 			pickupCode:'',
+			tabIndex:0,
+			tabsList:[{name:"核销记录"}]
 
 		};
 	},
@@ -104,6 +103,10 @@ export default {
 		}
 	},
 	methods: {
+		swiperChange: function (e) {
+			this.currentSwiper = e.detail.current
+		},
+
 
 		confirmOrder(){
 			confirmOrder(this.pickupCode).then(res =>{

+ 2 - 2
pages/groupbuying/pickupVerification/module/mescrollUni-item.vue

@@ -33,10 +33,10 @@
 		data() {
 			return {
 				downOption: {
-					auto: true // 不自动加载 (mixin已处理第一个tab触发downCallback)
+					auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
 				},
 				upOption: {
-					auto: true, // 不自动加载
+					auto: false, // 不自动加载
 					// page: {
 					// 	num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
 					// 	size: 10 // 每页数据的数量