Files
ClassContent/项目合集/校园失物招领/min-tpl/pages/index/index.wxml
2024-09-27 02:06:13 +08:00

47 lines
1.5 KiB
Plaintext

<view class="index">
<view class="banner">
<swiper indicator-dots='true' autoplay='true' interval='3000' duration='1000' circular='true' class="swip">
<swiper-item wx:for="{{movies}}" wx:for-index="index" wx:key="*this">
<image src='{{item.url}}' mode='widthFix'></image>
</swiper-item>
</swiper>
</view>
<view class="content">
<view class="search" bindtap="enterSearch">
<image src="../../images/index-icon/search.png"></image>
<text>搜索更多..</text>
</view>
<view class="push">
<view class="recruit" wx:for="{{ recruit }}"
data-id="{{ item.type }}" bindtap="enterPush"
wx:key="type">
<view class="recruit_action">
<image src="{{ item.src }}"></image>
<view class="add">+发布</view>
</view>
<view class="recruit_tips">{{ item.title }}</view>
</view>
</view>
<view class="tips_text">tps:听说点击小飞机和放大镜,会进入神秘世界...</view>
<view class="hot_news">
<view class="news_title">
<image src="../../images/index-icon/announcement.png"></image>
<text>最新消息</text>
</view>
<view class="news_content">
<view class="news_item" wx:for="{{noticeList}}" wx:key="notice_id">
<view class="icon"></view>
<text>{{ item.notice_text }}</text>
</view>
</view>
</view>
</view>
</view>