微信小程序例子——顶部tab栏点左右可切换内容,内容中含有轮播

1.内容摘要。

  实现顶部tab的切换,按左右按钮可以左右切换,当按到最左边或者最右边,按钮会变暗不可点击,如下图所示。tab里面写了一个轮播,轮播内容有图片和内容,切换的图标在内容下面,因为没有找到这么奇怪的需求,所以也是完全自己写的,有任何不完善的地方希望大家指正。

2.主要代码

(1)wxml代码

<view>
  <!-- tab栏 -->
  <view class='Tab'>
    <view class='tabImgL' bindtap='lefttab'>
      <image mode="widthFix" src='{{zuosrc}}'></image>
    </view>
    <scroll-view scroll-x="true" class="tab-h" scroll-left="{{scrollLeft}}">
      <view class="tab-item {{currentTab==0?'active':''}}" data-current="0" bindtap="swichNav">育乐</view>
      <view class="tab-item {{currentTab==1?'active':''}}" data-current="1" bindtap="swichNav">音乐</view>
      <view class="tab-item {{currentTab==2?'active':''}}" data-current="2" bindtap="swichNav">艺术</view>
      <view class="tab-item {{currentTab==3?'active':''}}" data-current="3" bindtap="swichNav">环球宝贝</view>
      <view class="tab-item {{currentTab==4?'active':''}}" data-current="4" bindtap="swichNav">生活技能</view>
      <view class="tab-item {{currentTab==5?'active':''}}" data-current="5" bindtap="swichNav">学校技能</view>
    </scroll-view>
    <view class='tabImgR' bindtap='righttab'>
      <image mode="widthFix" src='{{yousrc}}'></image>
    </view>
  </view>


  <!-- 内容 -->
  <view class="tab-content" current="{{currentTab}}" duration="100" bindchange="switchTab" style="height:{{winHeight}}rpx">
    <!-- 育月 -->
    <view wx:if="{{content==0}}">
      <scroll-view scroll-y="true" class="scoll-h">
        <!-- <view class='playImg' bindtap='toH5Page'> -->
        <view class='playImg'>
          <image mode="widthFix" src='../../images/icon/play.jpg'></image>
        </view>
        <view class='playCnt'>根据宝宝的月龄特点分为六个阶段。课程提供适龄有趣的游戏,帮助家长发现孩子的兴趣,让宝宝在过程中不断探索自己的能力,如空间感、对自己身体的控制等,从中体验到尝试、失败、成功的快乐。</view>
        <!-- 图片轮播 -->
        
        <swiper interval="{{interval}}" duration="{{duration}}" bindchange="changeSwiper">
         
          <block wx:for="{{imgUrls0}}">

            <swiper-item>
              <image mode="widthFix" src="{{item.imgsrc}}" class="slide-image"></image>
              <view class='playBot'>
                <view class='playTitle'>{{item.name}}
                  <span>{{item.desc}}</span>
                </view>
                <view>{{item.content}}</view>
              </view>
            </swiper-item>
          </block>
        </swiper>
 <view class='spot'>
            <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==0}}"></view>
            <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=0}}"></view>
            <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==1}}"></view>
            <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=1}}"></view>
            <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==2}}"></view>
            <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=2}}"></view>
            <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==3}}"></view>
            <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=3}}"></view>
            <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==4}}"></view>
            <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=4}}"></view>
            <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==5}}"></view>
            <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=5}}"></view>
          </view>
      </scroll-view>
    </view>
    <!-- 音乐 -->
    <view wx:if="{{content==1}}">
      <scroll-view scroll-y="true" class="scoll-h">
        <view class='playImg'>
          <image mode="widthFix" src='../../images/icon/music.jpg'></image>
        </view>
        <view class='playCnt'>20种音乐风格、乐器的使用,结合听、唱、舞蹈动作和即兴表演,鼓励并激发孩子与生俱来的音乐潜能,让家长掌握与孩子共同探索音乐的方式,见证孩子从吸收到表达 的音乐之路。</view>

        <!-- 图片轮播 -->
        
        <swiper interval="{{interval}}" duration="{{duration}}" bindchange="changeSwiper">
          
          <block wx:for="{{imgUrls1}}">

            <swiper-item>
              <image mode="widthFix" src="{{item.imgsrc}}" class="slide-image"></image>
              <view class='playBot'>
                <view class='playTitle'>{{item.name}}
                  <span>{{item.desc}}</span>
                </view>
                <view>{{item.content}}</view>
              </view>
            </swiper-item>
          </block>
        </swiper>
        <view class='spot' style='bottom:0rpx;'>
        <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==0}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=0}}"></view>
          <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==1}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=1}}"></view>
          <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==2}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=2}}"></view>
        </view>
      </scroll-view>
    </view>
    <!-- 艺术 -->
    <view wx:if="{{content==2}}" >
      <scroll-view scroll-y="true" class="scoll-h">
        <view class='playImg'>
          <image mode="widthFix" src='../../images/icon/art.jpg'></image>
        </view>
        <view class='playCnt'>别出心裁的艺术工具、意想不到的艺术材料和妙趣横生创作过程丰富孩子对自我和环境的表达和探索,进而提高孩子的表达力、专注力、动手及审美能力,打破家长对传统艺术的理解。</view>
        <!-- 图片轮播 -->
       
        <swiper interval="{{interval}}" duration="{{duration}}" bindchange="changeSwiper">
          
          <block wx:for="{{imgUrls2}}">
            <swiper-item>
              <image mode="widthFix" src="{{item.imgsrc}}" class="slide-image"></image>
              <view class='playBot'>
                <view class='playTitle'>{{item.name}}
                  <span>{{item.desc}}</span>
                </view>
                <view>{{item.content}}</view>
              </view>
            </swiper-item>
          </block>
        </swiper>
         <view class='spot' style='bottom:0rpx;'>
          <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==0}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=0}}"></view>
          <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==1}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=1}}"></view>
          <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==2}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=2}}"></view>
        </view>
      </scroll-view>
    </view>
    <!-- 环球宝贝 -->
    <view wx:if="{{content==3}}">
      <scroll-view scroll-y="true" class="scoll-h">
        <view class='playImg'>
          <image mode="widthFix" src='../../images/icon/globalkids.jpg'></image>
        </view>
        <view class='playCnt'>游历世界各地24个区域,通过游戏、舞蹈、歌曲、手工,感受与日常不一样的文化,丰富的材料与道具,让孩子动手操作时更富想象力。孩子们不但学习到不同知识与语言,更能早早体验到包容与多元,为世界观打下基础。</view>
        <!-- 图片轮播 -->
       
        <swiper interval="{{interval}}" duration="{{duration}}" bindchange="changeSwiper">
          
          <block wx:for="{{imgUrls3}}">
            <swiper-item>
              <image mode="widthFix" src="{{item.imgsrc}}" class="slide-image"></image>
              <view class='playBot'>
                <view class='playTitle'>{{item.name}}
                  <span>{{item.desc}}</span>
                </view>
                <view>{{item.content}}</view>
              </view>
            </swiper-item>
          </block>
        </swiper>
         <view class='spot'>
        <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==0}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=0}}"></view>
          <view class='spot1' data-it='{{item.spot}}' wx:if="{{swipperSpot==1}}"></view>
          <view class='spot2' data-it='{{item.spot}}' wx:elif="{{swipperSpot!=1}}"></view>
        </view>
      </scroll-view>
    </view>
    <!-- 生活技能 -->
    <view wx:if="{{content==4}}">
      <scroll-view scroll-y="true" class="scoll-h">
        <view style='height:1100rpx'>
          <view class='lifeskills'>
            <image mode="widthFix" src='../../images/photo/lifeskills.jpg'></image>
          </view>
          <view class='playBot' style='padding:2%'>
            <view class='playTitle'>Life Skills
              <span>生活技能</span>
            </view>
            <view>3~5岁的宝贝,通过实践类游戏,让孩子获得体验不同生活场景和主题的机会,挑战孩子在不同场景下身体的灵活使用。游戏过程均是对生活的模拟,让孩子认知生活层面的基本概念,提升常识与技能,提高从容生活的能力,做一个自信的社会人。</view>
          </view>
        </view>
      </scroll-view>
    </view>
    <!-- 学校技能 -->
    <view wx:if="{{content==5}}">
      <scroll-view scroll-y="true" class="scoll-h">
        <view style='height:1100rpx'>
          <view class='lifeskills'>
            <image  src='../../images/photo/schoolskills.jpg'></image>
          </view>
          <view class='playBot'style='padding:2%'>
            <view class='playTitle'>School Skills
              <span>学校技能</span>
            </view>
            <view>3~5岁的宝贝,随着孩子注意力、理解力的提升,课程增加为90分钟并在两间教室辗转上课。两位指导师将陪伴孩子度过与父母的分离期,通过“正面强化”“讨论”“示范”等方式强化孩子在幼儿园、家里、户外,乃至一生都需要的社交技能。</view>
          </view>
        </view>
      </scroll-view>
    </view>
  </view>
</view>

(2)wxss代码

.Tab {
  width: 100%;
  background: #fff;
  height: 80rpx;
  line-height: 80rpx;
  position: fixed;
  top: 0;
  z-index: 9999;
  font-size: 32rpx;
  white-space: nowrap;
  color: #888;
  box-sizing: border-box;
  overflow: hidden;
}

/* 箭头 */

.tabImgL, .tabImgR {
  width: 8%;
  text-align: center;
  display: inline-block;
}
.tabImgL{
  text-align: left;
  
}
.tabImgR{
  text-align: right;
  
}
.tabImgL {
  position: fixed;
  top: 10rpx;
  left: 0;
}

.tabImgR {
  position: fixed;
  top: 10rpx;
  right: 0;
}

.tabImgL image, .tabImgR image {
  width: 80%;
}

/* tab栏切换样式 */

.tab-h {
  width: 84%;
  margin: 0 auto;
  position: fixed;
  height: 80rpx;
  line-height: 80rpx;
  top: 0;
  left: 8%;
}

.tab-item {
 width: 160rpx;
  height: 70rpx;
  line-height: 70rpx;
  border-radius: 30rpx;
  text-align: center;
  position: relative;
  padding: 0 10rpx;
  display: inline-block;
}

.tab-item.active {
  width: 160rpx;
  height: 70rpx;
  line-height: 70rpx;
  background: #ef7421;
  color: #fff;
  border-radius: 30rpx;
  text-align: center;
  position: relative;
  padding: 0 10rpx;
}

/* 育月样式 */

.playImg {
 padding: 2%;
  text-align: center;
}

.playImg image {
  width: 100%;
}
.playCnt {
  line-height: 40rpx;
  font-size: 28rpx;
  color: #666;
  padding: 2%;
  text-align: justify;
}

swiper {
  margin: 0 2%;
  text-align: center;
  height:920rpx;
  border-radius: 20rpx;
  z-index: 1;
  position: relative;
}

.slide-image {
  width: 720rpx;
  border-radius: 20rpx;
}

.lifeskills {
  padding: 2%;
  text-align: center;
}

.lifeskills image {
  width: 100%;
  border-radius: 20rpx;
}

.playBot {
  text-align: justify;
  color: #666;
}

.playTitle {
  color: #ef7421;
  font-size: 50rpx;
}

.playTitle span {
  font-size: 32rpx;
  margin-left: 14rpx;
}

.tab-content {
  width: 100%;
  border-radius: 0 !important;
  border-top: 30rpx solid #f6f6f6;
  margin-top: 80rpx;
}

.scoll-h {
  height: 100%;
}

swiper-item {
  overflow: hidden;
  border-radius: 20rpx;
}

/* 轮播小点的样式 */
.spot{
  width: 40%;
  height: auto;
  left: 30%;
  position: relative;
   bottom:30rpx;
   text-align: center;
  z-index: 90;
  display: block;
   
}
.spot1 {
  width: 15rpx;
  height: 15rpx;
  background: #ef7421;
  border: 4rpx solid #fff;
  display: inline-block;
  margin: 10rpx;
  border-radius: 50%;
  z-index: 20;
  position: relative;
 
}

.spot2 {
  width: 15rpx;
  height: 15rpx;
  background: #000;
  opacity: 0.2;
  border: 2rpx solid #fff;
  display: inline-block;
  margin: 10rpx;
  border-radius: 50%;
  z-index: 20;
  position: relative;
  
}

(3)js

var app = getApp();
Page({
  data: {
    // 轮播数据
    imgUrls0: [
      {
        spot:'0',
        imgsrc:'../../images/photo/play1.jpg',
        name:'育乐L1',
        desc:'小小观察者',
        content: '提供金宝贝独有的教具、乐器和音乐,并引入日常用品,帮助宝宝发展视觉、听觉和触觉能力,从而适应环境。穿插趴着的小游戏,刺激动觉、平衡觉发展。游戏精简、轻松,回家也能复习。当您每天陪伴上课、与孩子复习,孩子醒着、睡眠的时间也会逐渐形成规律。'
        },
      {
        spot: '1',
        imgsrc: '../../images/photo/play2.jpg',
        name: '育乐L2',
        desc: '积极的行动者',
        content: '孩子有机会以各种姿势接触金宝贝不同形状、材质的大型设备,丰富在家中所无法体验的空间感和身体运动机会。设备的大型面积让不同家庭聚在一起,您可通过指导师引导,观察并了解孩子的发展规律。孩子从小便建立自己的小社交圈。'
      },
      {
        spot: '2',
        imgsrc: '../../images/photo/play3.jpg',
        name: '育乐L3',
        desc: '双向交流者',
        content: '大面积的空间让学步期的孩子有机会学习自己站立、行走。斜的、硬的、软的、拱的、凹的设备表面和充气回弹的材质对肢体提出新的要求,让孩子收获更强的运动能力。与同龄人分享设备的空间,让他们机会观察彼此;而您也有机会观察孩子们互动的方式。'
      },
      {
        spot: '3',
        imgsrc: '../../images/photo/play4.jpg',
        name: '育乐L4',
        desc: '问题解决者',
        content: '提供丰富的设备,鼓励孩子尝试挑战。当孩子在设备狭窄处相遇时,是他们学会如何解决问题的机会。在体能、社交发展设计之外,我们将概念、单词融入活动中,无论做、听还是说,语言与认知都在发展中。'
      },
      {
        spot: '4',
        imgsrc: '../../images/photo/play5.jpg',
        name: '育乐L5 ',
        desc: '创意思维者',
        content: '提供孩子合作游戏的机会,符合并激发社交需求。课程围绕联想游戏展开,让孩子通过动作、语言和对教具的使用,扩展生活经验。主题游戏的设置帮您拓展思路,了解更多和孩子玩的方式,通游戏建立美好的亲子关系。'
      },
      {
        spot: '5',
        imgsrc: '../../images/photo/play6.jpg',
        name: '育乐L6 ',
        desc: '逻辑思维者',
        content: '准备了猜谜游戏,激发孩子对课程主题的好奇,通过线索,建立逻辑思维。假扮游戏中,孩子有机会充分表达意见,推动活动进程,渐渐掌握游戏主动权,领导力更强。活动的设计也将让孩子们自然排队,学会轮流和谦让,培养社交技巧。'
      },
    ],
    imgUrls1: [
      {
        spot: '0',
        imgsrc: '../../images/photo/music1.jpg',
        name: '音乐M1',
        desc: '积极的聆听者',
        content: '音乐一的课程提供20种音乐风格,简易操作的打击乐器,让学习充满成功的乐趣。指导师将引导您为孩子演唱、通过动作让孩子感受旋律和节奏。韵律球、音乐丝巾游戏让您回家也能与孩子共享音乐时刻,摇篮曲时间让您在音乐中与孩子建立亲密的爱与依恋。'
      },
      {
        spot: '1',
        imgsrc: '../../images/photo/music2.jpg',
        name: '音乐M2',
        desc: '活跃的舞蹈家',
        content: '音乐二的课程提供世界各地的音乐,让孩子通过听、唱、运动来学习音乐元素,发展语言能力。孩子的自发表达将会分享给集体一起模仿,建立领导力和自信。乐器探索环节满足了孩子对律动、音色吸收的学习愿望。您还可以丰富曲库,与孩子拥有更多亲子时间。'
      },
      {
        spot: '2',
        imgsrc: '../../images/photo/music3.jpg',
        name: '音乐M3',
        desc: '音乐大玩家',
        content: '音乐三的课程通过动作设计,将孩子们连结起来做音乐游戏,体验与伙伴一起唱歌、游戏的宝贵经历。通过音乐学习,这个年龄段所需要发展的社交技巧与对规则的认知也自然被孩子吸收。歌曲的选择大部分与低龄段一致,让孩子更熟悉歌曲、自信演唱。'
      }
    ],
    imgUrls2: [
      {
        spot: '0',
        imgsrc: '../../images/photo/art1.jpg',
        name: '艺术A1',
        desc: '艺术探索者',
        content: '艺术一的活动环节动静结合,符合孩子容易兴奋的神经特质。有趣的工具所创造出的艺术效果将鼓励孩子专注操作,自然地培养专注力、审美和创造力。对自我意识萌芽的孩子来说,完成自己的作品、观察自己作品与他人作品的不同,是对自我的再一次确认。'
      },
      {
        spot: '1',
        imgsrc: '../../images/photo/art2.jpg',
        name: '艺术A2',
        desc: '艺术表达者',
        content: '艺术二课程帮助2岁的孩子在现有的动手能力条件下,完成对更多工具的探索,完善精细肌肉发育,提高创造力。通过艺术创造,孩子能将头脑中的表象化为表达,在不会说话之前,就能通过艺术的载体进行对自我和生活的表达。'
      },
      {
        spot: '2',
        imgsrc: '../../images/photo/art3.jpg',
        name: '艺术A3',
        desc: '小小艺术家',
        content: '艺术三的课程在前两个阶段的基础上,进一步丰富材料和工具的选用,提升活动难度,更适合孩子生活探索和表达的需求。同时,孩子在体验中,能涉猎到一些艺术流派、艺术大师的作品特点,促进艺术认知的学习。'
      }
    ],
    imgUrls3: [
      {
        spot: '0',
        imgsrc: '../../images/photo/globalkids1.jpg',
        name: '环球宝贝GK1 ',
        desc: '世界的小公民',
        content: '采集了24个国家地区的文化风俗,以孩子们的吸收,学习方式为基础,汇编成了环球宝贝课。在课堂上,孩子们体验到的语言、舞蹈、歌曲、手工和游戏,让他们不出国门,便能亲身经历全球的文化差异,体验成为世界的小公民。'
      },
      {
        spot: '1',
        imgsrc: '../../images/photo/globalkids2.jpg',
        name: '环球宝贝GK2',
        desc: '小小梦想家',
        content: '拥有世界小公民能力的同时,课程的设置让孩子拥有充分的感官触觉探索机会,培养孩子的想象力与合作能力,让孩子更富有包容力和创意。独特的日志记录环节,让家长们在记录孩子每节课的游历过程中,更了解孩子的兴趣和发育。'
      }
    ],
    indicatorActiveColor:"#ef4721",
    indicatorColor:"#ef4721",
    indicatorDots: true,
    autoplay: true,
    interval: 0,
    duration: 0,
    winHeight: "",//窗口高度
    currentTab: 0, //预设当前项的值
    scrollLeft: 0, //tab标题的滚动条位置    
    swipperSpot:'0', //初始化轮播的点
    zuosrc:'../../images/icon/zuojiantou.png',
    yousrc:'../../images/icon/youjiantouo.png',
    content:'0'
  },
  // 滚动切换标签样式
  switchTab: function (e) {
    this.setData({
      currentTab: e.detail.current,
      //轮播初始化
      swipperSpot: '0'
    });
    this.checkCor();
    if (this.data.currentTab == 0) {
      this.setData({
        zuosrc: '../../images/icon/zuojiantou.png',
        yousrc: '../../images/icon/youjiantouo.png',
      })
    } else if (this.data.currentTab == 5) {
      this.setData({
        yousrc: '../../images/icon/youjiantou.png',
        zuosrc: '../../images/icon/zuojiantouo.png'
        
      })
    } else {
      this.setData({
        zuosrc: '../../images/icon/zuojiantouo.png',
        yousrc: '../../images/icon/youjiantouo.png'
      })
    }
  },
  // 点击标题切换当前页时改变样式
  swichNav: function (e) {
    if (e == 0 || e == 1 || e == 2 || e == 3 || e == 4 || e == 5){
      var cur = e
    }else{
      var cur = e.target.dataset.current;
    }
    this.setData({
      content: cur,
      swipperSpot: '0'
    })
    if (this.data.currentTab == cur) {
      if (this.data.currentTab == 0) {
        this.setData({
          zuosrc: '../../images/icon/zuojiantou.png',
          yousrc: '../../images/icon/youjiantouo.png',
        })
      } else if (this.data.currentTab == 5) {
        this.setData({
          yousrc: '../../images/icon/youjiantou.png',
          zuosrc: '../../images/icon/zuojiantouo.png',
        })
      } else {
        this.setData({
          zuosrc: '../../images/icon/zuojiantouo.png',
          yousrc: '../../images/icon/youjiantouo.png'
        })
      }
       return false;
     }else {
      this.setData({
        currentTab: cur,
        swipperSpot: '0'
      })
      app.globalData.cate_id =cur
      console.log(this.data.currentTab)
      if (this.data.currentTab==0){
        this.setData({
          zuosrc: '../../images/icon/zuojiantou.png',
          yousrc: '../../images/icon/youjiantouo.png',
        })
      } else if (this.data.currentTab == 5){
        this.setData({
          yousrc: '../../images/icon/youjiantou.png',
          zuosrc: '../../images/icon/zuojiantouo.png',
        })
      }else{
        this.setData({
          zuosrc: '../../images/icon/zuojiantouo.png',
          yousrc: '../../images/icon/youjiantouo.png'
        })
      }
    }
    this.checkCor()
  },
  //轮播图滚动时轮播点切换
  changeSwiper:function(e){
    console.log(e.detail.current)
    this.setData({
      swipperSpot: e.detail.current
    })
  },
  //判断当前滚动超过一屏时,设置tab标题滚动条。
  checkCor: function () {
    if (this.data.currentTab >2) {
      this.setData({
        scrollLeft: 300
      })
    } else {
      this.setData({
        scrollLeft: 0
      })
    }
  },
  // 切换到哪个tab
  onShow:function(){
    console.log(app.globalData.cate_id)
    this.setData({
      currentTab: app.globalData.cate_id,
      content: app.globalData.cate_id,

    })
    this.swichNav(app.globalData.cate_id)
  },
  onLoad: function (option) {
    var that = this;
    // 高度自适应
    wx.getSystemInfo({
      success: function (res) {
        var clientHeight = res.windowHeight,
          clientWidth = res.windowWidth,
          rpxR = 750 / clientWidth;
        var calc = clientHeight * rpxR-80;
        console.log(calc)
        that.setData({
          winHeight: calc
        });
      }
    });
  },
  footerTap: app.footerTap,
  // 点左箭头向左移动1
  lefttab:function(){
    if (this.data.content > 0 && this.data.content <= 5){
      var n = this.data.content-1;
      this.swichNav(n);
    }
    
  },
  // 点右箭头向右移动1

  righttab:function(){
    if (this.data.content >=0&&this.data.content <5) {
      var n = Number(this.data.content) + 1;
      this.swichNav(n);
    }
  },
  toH5Page:function(){
    wx.navigateTo({
      url: "../H5web/H5web?url='www.baidu.com'",
    })
  }
})

3、觉得不错请打赏,您的十分满意是笔者的无限动力。


猜你喜欢

转载自blog.csdn.net/qq_34328404/article/details/80626128