You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
970 B
33 lines
970 B
<view class="wrip-view">
|
|
<!-- 轮播区域 -->
|
|
<view>
|
|
<view class="swip">
|
|
<text class="swip-text">公告栏</text>
|
|
<swiper indicator-dots="{{true}}" autoplay="{{true}}" interval="{{2000}}">
|
|
<block wx:for="{{3}}" wx:key="*this">
|
|
<swiper-item>
|
|
<view class="swiper-item">
|
|
<image src="/static/index/spwr01.jpg"></image>
|
|
</view>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
|
|
</view>
|
|
</view>
|
|
<!-- 任务列表 -->
|
|
<view class="task" wx:if="{{taskList.length!=0}}">
|
|
<block wx:for="{{taskList}}" wx:key="id">
|
|
<view class="task-item">
|
|
<view class="task-item-title"> {{item.title}}: </view>
|
|
<view class="task-item-text">
|
|
<text> 开始时间:{{item.startTime}} </text>
|
|
<text> 截止时间:{{item.endTime}} </text>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
<view class="error" wx:else>
|
|
暂无数据
|
|
</view>
|
|
</view> |