index.wxml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- 导航栏 -->
  2. <nav-bar title="广州钻石交易中心" left="{{ false }}"></nav-bar>
  3. <scroll-view style="padding-bottom: 80px;" scroll-y>
  4. <!-- banner视图 -->
  5. <view class="banner-bg">
  6. <view class="banner-bg__top">
  7. <image style="width: 60%;" mode="widthFix" src="http://218.17.158.45:23012/mtp2-onlineopen/uploadFile/gz/login_logo.png">logo</image>
  8. <van-button type="info" round icon="search">证书号搜索钻石</van-button>
  9. </view>
  10. <!-- banner轮播图 -->
  11. <swiper class="banner" wx:if="{{ banners.count != 0 }}" indicator-active-color="orange" indicator-dots autoplay interval="5000" circular>
  12. <swiper-item class="banner_item" wx:for="{{ banners }}" wx:key="index" id="{{ item }}">
  13. <view class="swiper-item">
  14. <image src='{{ item }}' mode="widthFix"></image>
  15. </view>
  16. </swiper-item>
  17. </swiper>
  18. </view>
  19. <!-- 统计 -->
  20. <view class="statistics">
  21. <view class="statistics-item" wx:for="{{ statistics }}" wx:key="id" wx:for-index="idx" wx:for-item="itm">
  22. <text class="{{ itm.class }}">{{ itm.value }}</text>
  23. <text class="{{ itm.class }}">{{ itm.title }}</text>
  24. </view>
  25. </view>
  26. <!-- 功能菜单 -->
  27. <van-grid column-num="4" border="{{ false }}" icon-size="{{ 50 }}">
  28. <van-grid-item wx:for="{{ menus }}" wx:for-item="index" wx:key="id" wx:for-index="idx" wx:for-item="itm" id="{{ itm.id }}" url="{{ itm.path }}" text="{{ itm.title }}" icon="http://218.17.158.45:23012/mtp2-onlineopen/uploadFile/gz/{{ itm.icon }}.png"/>
  29. </van-grid>
  30. <!-- 通知栏 -->
  31. <van-notice-bar wx:if="{{ msgs.length != 0 }}" left-icon="volume-o" mode="link" bind:click="goToMsg" color="#333" background="#f3f3f3" text="{{ notice.title }}" scrollable />
  32. </scroll-view>
  33. <!-- toast -->
  34. <van-toast id="van-toast" />
  35. <!-- 无数据 -->
  36. <van-empty wx:if="{{ isEmpty }}" class="custom-image" description="无数据"/>