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.
18 lines
567 B
18 lines
567 B
<!--pages/sonShouye/headline/headline.wxml-->
|
|
<view class='wrapper'>
|
|
<view class='title'>校园头条资讯</view>
|
|
<view class='headline'>
|
|
<scroll-view scroll-y >
|
|
<block wx:for="{{headlineData}}" wx:key="{{headlineData}}">
|
|
<view class='headline-item'>
|
|
<image src='{{item.url}}' class='headline-image'></image>
|
|
<view class='headline-cont'>
|
|
<view class='article-title'>{{item.title}}</view>
|
|
|
|
<view>{{item.time}}</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</scroll-view>
|
|
</view>
|
|
</view> |