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.
13 lines
585 B
13 lines
585 B
<!--pages/list/message/index.wxml-->
|
|
<title title="消息通知"></title>
|
|
<navigator url="/pages/user/order/list" class="message-item" wx:for="{{list}}">
|
|
<view class="msg-top">
|
|
<view class="msg-title textOver2">{{item.msg}}</view>
|
|
<view class="msg-date">{{item.create_time}}</view>
|
|
</view>
|
|
<view class="more">查看详情>></view>
|
|
</navigator>
|
|
<view class="common-empty" wx:if="{{list.length==0}}" style="z-index:-1;top:0">
|
|
<image lazy-load mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
|
|
<view>暂无内容</view>
|
|
</view>
|
|
|