Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <!--index.wxml-->
- <view class="all" wx:if="{{mainShow}}">
- <view class="main">
- <view class="contentFrame">
- <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="swiperFrame">
- <swiper class="swiperSty" autoplay current="{{swiperCurrent}}" bindchange="swiperChange">
- <swiper-item wx:for="{{bannerList}}" wx:key="index"><image src="{{item.bannerUrl}}" style="width:100%;" 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>
- <image class="indexBottom" src="{{imgUrl+'/images/indexBottom.png'}}"></image>
- </view>
- <image wx:if="{{isStartAdvertisingShow}}" style="opacity:{{isStartAdvertising}};" src="{{startAdvertisingUrl}}" class='imgBg' catchtouchmove="ture"></image>
- <view class="msgFrame" wx:if="{{!isRegister}}">
- <view class="inputGroup">
- <input class="inputSty" placeholder="姓名" 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" open-type="getPhoneNumber" bindgetphonenumber="getUserPhone"></button>
- </view>
- </view>
- <view class="codeGroup">
- <input class="inputCode" bindinput="getCaptcha" 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">预约鉴赏</view>
- </view>
- <service></service>
- </view>
- <tabBar></tabBar>
- </view>
|