12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <view class="wrapper">
- <view class="app_page-header-search">
- <view class="app_page-header-search-warp app_width-690">
- <label for="header-search">
- <image src=""></image>
- </label>
- <input
- placeholder-class="app_header-search-placeholder"
- value=""
- placeholder="搜索信息"></input>
- </view>
- </view>
- <customer-tab
- nav="{{nav}}"
- active="{{active}}"
- bind:change="handleNav"/>
- <view class="list"
- wx:for="{{list}}"
- wx:key="index"
- data-item="{{item}}">
- <view class="time-track">今天</view>
- <view class="item-message system">
- <image
- class="icon-system"
- src=""></image>
- <view class="info">
- <text class="title">系统信息</text>
- <text class="date">2022/03/17 19:20</text>
- </view>
- <image
- class="arrow"
- src=""></image>
- </view>
- <view class="item-message business">
- <image
- class="icon-business"
- src=""></image>
- <view class="info">
- <text class="title">商家:巴啦啦西瓜巴啦啦西瓜巴啦啦西瓜巴啦啦西瓜巴啦啦西瓜巴啦啦西瓜</text>
- <text class="content">请问什么时候发货请问什么时候发货请问什么时候发货请问什么时候发货请问什么时候发货请问什么时候发货请问什么时候发货请问什么时候发货?</text>
- <text class="date">2022/03/17 19:20</text>
- </view>
- </view>
- </view>
- <!-- 无数据 -->
- <view class="list-bitmap" wx:if="{{finished && list.length < 1}}">
- <image src="system"></image>
- <text>暂无数据</text>
- </view>
- <!-- 上拉加载 -->
- <view class="pullup-wrapper" wx:if="{{!isRefresh}}">
- <van-loading
- wx:if="{{!finished}}"
- size="24px"
- type="spinner">加载中...
- </van-loading>
- </view>
- </view>
|