17 lines
576 B
Plaintext
17 lines
576 B
Plaintext
<!--pages/notification/notification.wxml-->
|
|
<view class="main">
|
|
<view class="content" wx:if="{{state == 0}}">
|
|
<view class="wrap"> {{content}}</view>
|
|
</view>
|
|
<view class="content" wx:elif="{{state == 1}}">
|
|
<view wx:for="{{msgList}}" wx:key="item">
|
|
<rich-text nodes="{{item.CONTENT}}"></rich-text>
|
|
</view>
|
|
</view>
|
|
<view class="content" wx:elif="{{state == 3}}">
|
|
<view wx:for="{{ImgMsg}}" wx:key="item">
|
|
<image src="{{url}}{{item.IMG}}" class="img"></image>
|
|
<rich-text nodes="{{item.CONTENT}}"></rich-text>
|
|
</view>
|
|
</view>
|
|
</view> |