东风启辰小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 line
3.2KB

  1. <!--index.wxml-->
  2. <view class="all" wx:if="{{mainShow}}">
  3. <view class="main">
  4. <view class="contentFrame">
  5. <view class="videoSty">
  6. <video id="video" poster="{{videoList.posterUrl}}" src="{{videoList.videoUrl}}"></video>
  7. <image wx:if="{{!videoVideoControls}}" class="videoPoster" src="{{videoList.posterUrl}}"></image>
  8. <image wx:if="{{!videoVideoControls}}" bindtap="hideVideoControls" class="videoPlay" src="{{imgUrl+'/images/videoPlay.png'}}"></image>
  9. </view>
  10. <view class="swiperFrame">
  11. <swiper class="swiperSty" autoplay current="{{swiperCurrent}}" bindchange="swiperChange">
  12. <swiper-item wx:for="{{bannerList}}" wx:key="index"><image src="{{item.bannerUrl}}" style="width:100%;" mode="aspectFill"></image></swiper-item>
  13. </swiper>
  14. <image class="leftArrow" bindtap="prevImg" src="{{imgUrl+'/images/leftArrow.png'}}"></image>
  15. <image class="rightArrow" bindtap="nextImg" src="{{imgUrl+'/images/rightArrow.png'}}"></image>
  16. </view>
  17. <view class="bannerBarFrame">
  18. <view class="bannerBarGroup">
  19. <view class="bannerBar1 {{index==swiperCurrent?'bannerBar2':''}}" wx:for="{{bannerList}}" wx:key="index"></view>
  20. </view>
  21. <view class="bannerName">{{bannerList[swiperCurrent].bannerName}}</view>
  22. </view>
  23. <image class="indexBottom" src="{{imgUrl+'/images/indexBottom.png'}}"></image>
  24. </view>
  25. <image wx:if="{{isStartAdvertisingShow}}" style="opacity:{{isStartAdvertising}};" src="{{startAdvertisingUrl}}" class='imgBg' catchtouchmove="ture"></image>
  26. <view class="msgFrame" wx:if="{{!isRegister}}">
  27. <view class="inputGroup">
  28. <input class="inputSty" placeholder="姓名" bindinput="getRealname"></input>
  29. <input class="inputSty" bindinput="getMobile" type="number" value="{{subscribeData.mobile}}" maxlength='11' placeholder="电话"></input>
  30. <view class="getPhoneFrame" wx:if="{{!phoneInputShow}}">
  31. <button class="getPhoneBtn" open-type="getPhoneNumber" bindgetphonenumber="getUserPhone"></button>
  32. </view>
  33. </view>
  34. <view class="codeGroup">
  35. <input class="inputCode" bindinput="getCaptcha" placeholder="验证码"></input>
  36. <view class="codeTime" bindtap="getCode">{{verificationCode}}</view>
  37. </view>
  38. <view wx:if="{{siteSelect}}">
  39. <picker mode='selector' range="{{provinceArr}}" range-key="province" value="{{provinceValue}}" bindchange="provinceChane">
  40. <view class="selectGroup">
  41. <text class="selectName">{{provinceArr[provinceValue].province}}</text>
  42. <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
  43. </view>
  44. </picker>
  45. <picker mode='selector' range="{{storeArr}}" range-key="agent_detail" value="{{storeValue}}" bindchange="storeChane">
  46. <view class="selectGroup">
  47. <text class="selectName">{{storeArr[storeValue].agent_detail}}</text>
  48. <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
  49. </view>
  50. </picker>
  51. </view>
  52. <view class="subscribeBtn" bindtap="subscribeFun">预约鉴赏</view>
  53. </view>
  54. <service></service>
  55. </view>
  56. <tabBar></tabBar>
  57. </view>