23 lines
1.0 KiB
Plaintext
23 lines
1.0 KiB
Plaintext
|
|
|
|
<view class="page">
|
|
|
|
|
|
<view class="weui-cells weui-cells_after-title" style="border-radius: 10rpx;margin:10px; background:none;">
|
|
<block wx:for="{{results}}" wx:key="index">
|
|
<navigator class="newsList" url="detail?id={{item.id}}" style="display: flex;padding: 10rpx;" hover-class="weui-cell_active">
|
|
<view class="weui-media-box__bd weui-media-box__bd_in-appmsg" style="padding: 20rpx;border-radius: 10rpx;width:90%;position:relative;height:80px">
|
|
|
|
<image src="{{url+item.art_photo}}" style="width:80px;height:80px;float:left;position: absolute;top:50%;transform: translateY(-50%);border-radius: 50rpx;"> </image>
|
|
<view style="padding-left:110px;padding-top:10px;font-size:18px;font-weight:bold;word-break:break-all;">
|
|
{{item.art_name }}
|
|
</view>
|
|
<view class="weui-media-box__title" style="padding-left:100px;padding-top:10px;font-size:14px;">
|
|
<text wx:if="{{item.art_honor}}"> {{item.art_honor }}</text>
|
|
</view>
|
|
|
|
</view>
|
|
</navigator>
|
|
</block>
|
|
</view>
|
|
</view> |