index.wxml 1.3 KB

1234567891011121314151617181920212223
  1. <van-search value="{{ value }}" shape="round" background="var(--primary)" placeholder="请输入搜索关键词" />
  2. <!-- 下拉菜单 -->
  3. <van-dropdown-menu class="menu" activeColor='var(--assist)'>
  4. <van-dropdown-item id="item" title="{{showText||'默认'}}">
  5. <van-tree-select items="{{ items }}" main-active-class='main-active' content-active-class='content-active' main-active-index="{{ mainActiveIndex }}" active-id="{{activeId}}" bind:click-nav="onClickNav" bind:click-item="onClickItem" />
  6. </van-dropdown-item>
  7. <view class="switch">
  8. <My_switch></My_switch>
  9. </view>
  10. </van-dropdown-menu>
  11. <!-- 列表 -->
  12. <My_listBox height='{{scrollHeight}}'>
  13. <view class="unread">总共15个,有1个更新</view>
  14. <navigator url="/pages/college/detail" class="course my-card" wx:for="{{5}}">
  15. <van-image width="230rpx" height="120rpx" custom-class='cover-img' lazy-load fit='cover' src="https://img.yzcdn.cn/vant/cat.jpeg" />
  16. <view class="explian">
  17. <view class="title line-1">标题标题标题表头标题标题标题表头</view>
  18. <view class="details line-1">标题标题标题表头标题标题标题表头</view>
  19. <view class="read line-1">5人已经阅读</view>
  20. </view>
  21. </navigator>
  22. </My_listBox>