68 lines
3.5 KiB
Plaintext
68 lines
3.5 KiB
Plaintext
<header-nav></header-nav>
|
||
<view class="container">
|
||
<!-- <view class="attention-box"> -->
|
||
<view class="head">
|
||
<view class="head-icon">
|
||
<image mode="widthFix" src="../../img/u16.png"></image>
|
||
</view>
|
||
系统通知
|
||
</view>
|
||
<!-- 提示关注服务号 -->
|
||
<view class="hintAttention" wx:if="{{ issubscribe == 0 }}">
|
||
<text>关注寄托服务号,第一时间收到消息通知</text>
|
||
<view bindtap="attention" class="attention-btn">关注</view>
|
||
</view>
|
||
|
||
<!-- 信息 -->
|
||
<view class="information-box">
|
||
<!-- <scroll-view scroll-x="{{ true }}" style="height: 200rpx;width: 750rpx;white-space: nowrap;">
|
||
<block wx:for="{{ 100 }}">
|
||
<view style="height: 100rpx;margin-top: 20rpx; display: inline-block; width: 100rpx;">{{ item }}</view>
|
||
</block>
|
||
</scroll-view> -->
|
||
<view class="information-item" wx:for="{{ list }}" wx:key="index">
|
||
<view class="time"><text>{{ item.timestamp }}</text>
|
||
<image wx:if="{{ item.isread == 0 }}" mode="widthFix" src="../../img/u20.png"></image>
|
||
</view>
|
||
<view code="true" class="information-title">
|
||
<view class="information-message" style="display: inline; word-break: break-all;">{{ item.littleMessage || item.message }}</view>
|
||
<view wx:if="{{ item.reportshowState == 0 &&( item.data.reportnummessage && item.data.reportnummessage.length != 0) || item.littleMessage }}" class="name-tips-close-btn" bindtap="cutUnfoldState" data-index="{{ index }}">
|
||
<image src="/img/u124.svg"></image>
|
||
</view>
|
||
</view>
|
||
<view class="information-cause-box" wx:if="{{ item.reportshowState != 0 }}">
|
||
<view class="information-cause-item" wx:for="{{ item.data.reportnummessage}}" wx:for-item="it" wx:key="it">- {{ it }}</view>
|
||
</view>
|
||
<view class="resource-information">
|
||
<image wx:if="{{ item.data.status != 1}}" class="resource-information-top-icon" src="/img/u75.png" mode="widthFix"></image>
|
||
<view class="resource-title" bindtap="{{ item.data.status == 1 ? 'jumpDetails' : ''}}" data-uniqid="{{ item.data.uniqid }}"><text>{{ item.data.subject }}</text>
|
||
<image class="pic" wx:if="{{ item.data.isimage == 1}}" src="/img/pics.jpg" mode="widthFix"></image>
|
||
</view>
|
||
<view class="resource-id">房源ID:{{ item.data.id }}</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 到底了 -->
|
||
<view class="onEarth" wx:if="{{ list.length }}">
|
||
到底了
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 消息为空时 -->
|
||
<view class="empty-box" wx:if="{{ list.length == 0}}">
|
||
<image src="/img/u6.png" mode="widthFix" class="empty"></image>
|
||
<text class="noMessage">暂无消息</text>
|
||
</view>
|
||
|
||
<view class="popup-bj" wx:if="{{ popupState }}" bindtap="attention">
|
||
<view class="popup-box" catchtap="popup-box">
|
||
<image catchtap="attention" class="close-icon" src="/img/plusgrey.png"></image>
|
||
<text class="popup-title">关注寄托服务号</text>
|
||
<text class="popup-title">第一时间收到消息通知</text>
|
||
<!-- <image class="qrcode" show-menu-by-longpress="true" src="{{ qrcode }}"></image> -->
|
||
<image class="qrcode" show-menu-by-longpress="true" src="{{ qrcode }}"></image>
|
||
<view class="popup-hint">长按扫码即可关注</view>
|
||
</view>
|
||
</view>
|
||
|
||
</view> |