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