index.wxml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!-- tabbar--Home -->
  2. <view style="padding-bottom:{{safeAreaBottom+140}}rpx;">
  3. <!-- 轮播图 -->
  4. <swiper class="home_banner" autoplay circular indicator-dots indicator-color="#CCCCCC" indicator-active-color="#FFFFFF">
  5. <swiper-item class="home_banner_item" wx:for="{{bannerList}}" wx:key="{{item.id}}">
  6. <image src="{{item.url}}" mode="aspectFill"></image>
  7. </swiper-item>
  8. </swiper>
  9. <!-- 功能导航区 -->
  10. <van-grid class="home_nav" icon-size="55" border="{{ false }}">
  11. <van-grid-item icon-class="home_nav_icon" custom-class="home_nav_item" text-class="home_nav_item_text" wx:for="{{homeNavList}}" wx:key="{{item.id}}" icon="{{item.url}}" text="{{item.text}}" />
  12. </van-grid>
  13. <!-- 通告 -->
  14. <My_inform_box title="通告" Rbut="查看全部" showIcon marginTop='15' :RbutClick="RbutClick">
  15. <My_inform_item wx:for="{{3}}"></My_inform_item>
  16. </My_inform_box>
  17. <!-- 展会实况 -->
  18. <My_RealTime_display></My_RealTime_display>
  19. <!-- 经营数据 -->
  20. <My_inform_box title="经营数据" botBorder titleImg="/static/icon-1.png">
  21. <My_operation></My_operation>
  22. </My_inform_box>
  23. <!-- 推广数据 -->
  24. <My_inform_box title="推广数据" botBorder titleImg="/static/icon-2.png" marginTop="0">
  25. <My_operation></My_operation>
  26. </My_inform_box>
  27. <!-- 合作商家 -->
  28. <My_inform_box title="合作商家" Rbut="查看全部" showIcon marginTop='15' :RbutClick="RbutClick">
  29. <swiper class="store" indicator-dots indicator-color="#E4E4E4" indicator-active-color="#999999" autoplay circular>
  30. <swiper-item>
  31. <view class="store_list">
  32. <view class="store_item" wx:for="{{6}}">
  33. <van-image width="100%" height="90" lazy-load src="/static/store_list/icon-1.jpg" />
  34. <view class="store_item_type u-line-1">家纺1111111111111111</view>
  35. <view class="store_item_explain u-line-1">高档窗帘1111111111111111</view>
  36. </view>
  37. </view>
  38. </swiper-item>
  39. <swiper-item>
  40. <view class="store_list">
  41. <view class="store_item" wx:for="{{6}}">
  42. <van-image width="100%" height="90" lazy-load src="/static/store_list/icon-2.jpg" />
  43. <view class="store_item_type">家纺</view>
  44. <view class="store_item_explain">高档窗帘</view>
  45. </view>
  46. </view>
  47. </swiper-item>
  48. <swiper-item>
  49. <view class="store_list">
  50. <view class="store_item" wx:for="{{6}}">
  51. <van-image width="100%" height="90" lazy-load src="/static/store_list/icon-3.jpg" />
  52. <view class="store_item_type">家纺</view>
  53. <view class="store_item_explain">高档窗帘</view>
  54. </view>
  55. </view>
  56. </swiper-item>
  57. </swiper>
  58. </My_inform_box>
  59. </view>