东风启辰小程序端
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.

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