东风启辰小程序端
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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