50 lines
2.2 KiB
Plaintext
50 lines
2.2 KiB
Plaintext
<block wx:if="{{noticeArr.length > 0}}">
|
|
<navigator hover-class="none" url="../details/index?id={{item.notification_id}}" class="list" wx:for="{{noticeArr}}" wx:key="index">
|
|
<view class="unread" wx:if="{{item.read_at == ''}}">未读</view>
|
|
<view class="list-top">
|
|
<block wx:if="{{type == 'SystemOpenVip'}}">
|
|
<image src="http://api.siyuankunlun.com/storage/materials/2022/08/09/newsIcon_04.jpg" mode="widthFix"></image>
|
|
<text>开通会员通知</text>
|
|
</block>
|
|
<block wx:elif="{{type == 'SystemOrderDelivered'}}">
|
|
<image src="http://api.siyuankunlun.com/storage/materials/2022/08/09/newsIcon_02.jpg" mode="widthFix"></image>
|
|
<text>发货通知</text>
|
|
</block>
|
|
<block wx:elif="{{type == 'SystemRemindUserSign'}}">
|
|
<image src="http://api.siyuankunlun.com/storage/materials/2022/08/09/newsIcon_01.png" mode="widthFix"></image>
|
|
<text>打卡通知</text>
|
|
</block>
|
|
<block wx:else>
|
|
<image src="http://api.siyuankunlun.com/storage/materials/2022/08/09/newsIcon_05.png" mode="widthFix"></image>
|
|
<text>上传报告通知</text>
|
|
</block>
|
|
</view>
|
|
<view class="list-cont">
|
|
<view class="nowrap list-name">
|
|
{{item.title}}
|
|
</view>
|
|
<view class="list-label">
|
|
<view class="list-text">
|
|
<text>时间:</text>
|
|
<view class="list-time">
|
|
{{item.created_at}}
|
|
</view>
|
|
</view>
|
|
<view class="list-text">
|
|
<text>内容:</text>
|
|
<view class="list-time">
|
|
{{item.content}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="list-more">
|
|
<text>查看详情</text>
|
|
<image src="/static/icons/arrow_more.png"></image>
|
|
</view>
|
|
</navigator>
|
|
</block>
|
|
<view class="pack-center pages-hint" wx:else>
|
|
<image src="/static/imgs/coupon_null.png"></image>
|
|
<view>暂无数据</view>
|
|
</view> |