|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!--index.wxml-->
- <view class="all" wx:if="{{mainShow}}">
- <view class="main" wx:if="{{isStartAdvertising==0 || !isStartAdvertisingShow}}">
- <view class="contentFrame">
- <image style="width:750rpx;height:0rpx;" mode="widthFix" src="{{kvurl}}"></image>
- <image style="width:750rpx;height:331rpx;" src="{{imgUrl+'/images/indexText.png'}}"></image>
- <view class="swiperFrame">
- <swiper class="swiperSty" autoplay current="{{swiperCurrent}}" bindchange="swiperChange">
- <swiper-item wx:for="{{bannerList}}" wx:key="index"><image src="{{item.bannerUrl}}" style="width:750rpx;height:530rpx;" mode="aspectFill"></image></swiper-item>
- </swiper>
- <image class="leftArrow" bindtap="prevImg" src="{{imgUrl+'/images/leftArrow.png'}}"></image>
- <image class="rightArrow" bindtap="nextImg" src="{{imgUrl+'/images/rightArrow.png'}}"></image>
- </view>
- <view class="bannerBarFrame">
- <!-- <view class="bannerBarGroup">
- <view class="bannerBar1 {{index==swiperCurrent?'bannerBar2':''}}" wx:for="{{bannerList}}" wx:key="index"></view>
- </view> -->
- <view class="bannerName">{{bannerList[swiperCurrent].bannerName}}</view>
- </view>
- <view class="videoSty">
- <video id="video" poster="{{videoList.posterUrl}}" src="{{videoList.videoUrl}}"></video>
- <image wx:if="{{!videoVideoControls}}" class="videoPoster" src="{{videoList.posterUrl}}"></image>
- <image wx:if="{{!videoVideoControls}}" bindtap="hideVideoControls" class="videoPlay" src="{{imgUrl+'/images/videoPlay.png'}}"></image>
- </view>
- <view class="interval1"></view>
- <view class="indexBottom2Group">
- <image class="indexBottom" src="{{imgUrl+'/images/indexBottom2.png?v=002'}}"></image>
- <view class="lookMore" bindtap="lookMore"></view>
- </view>
- <view class="indexBottom2"></view>
- </view>
- <!-- <view class="msgFrame" wx:if="{{!isRegister}}"> -->
- <view class="msgFrame">
- <view class="inputGroup">
- <input class="inputSty" placeholder="姓名" value="{{subscribeData.realname}}" bindinput="getRealname"></input>
- <input class="inputSty" bindinput="getMobile" type="number" value="{{subscribeData.mobile}}" maxlength='11' placeholder="电话"></input>
- <view class="getPhoneFrame" wx:if="{{!phoneInputShow}}">
- <button class="getPhoneBtn" style="width:100%;height:100%;min-height:0;" open-type="getPhoneNumber" bindgetphonenumber="getUserPhone"></button>
- </view>
- </view>
- <view class="codeGroup">
- <input class="inputCode" bindfocus="showSite" bindinput="getCaptcha" value="{{subscribeData.captcha}}" placeholder="验证码"></input>
- <view class="codeTime" bindtap="getCode">{{verificationCode}}</view>
- </view>
- <view wx:if="{{siteSelect}}">
- <picker mode='selector' range="{{provinceArr}}" range-key="province" value="{{provinceValue}}" bindchange="provinceChane">
- <view class="selectGroup">
- <text class="selectName">{{provinceArr[provinceValue].province}}</text>
- <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
- </view>
- </picker>
- <picker mode='selector' range="{{storeArr}}" range-key="agent_detail" value="{{storeValue}}" bindchange="storeChane">
- <view class="selectGroup">
- <text class="selectName">{{storeArr[storeValue].agent_detail}}</text>
- <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
- </view>
- </picker>
- </view>
- <view class="subscribeBtn" bindtap="subscribeFun">
- <image style="width:100%;height:100%;" src="{{imgUrl+'/btns/indexMake.png'}}"></image>
- <button wx:if="{{!userData}}" class="getUserMsgBtn" open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="getUserWxMsg" style="width:100%;height:100%;min-height:0;"></button>
- </view>
- </view>
- <service></service>
- </view>
- <tabBar wx:if="{{isStartAdvertising==0 || !isStartAdvertisingShow}}"></tabBar>
- <!-- <view wx:if="{{isStartAdvertisingShow}}" class='imgBg' catchtouchmove="ture"></view> -->
- <image wx:if="{{isStartAdvertisingShow}}" mode="widthFix" style="opacity:{{isStartAdvertising}};" src="{{startAdvertisingUrl}}" class='imgBg' catchtouchmove="ture"></image>
- </view>
|