1234567891011121314151617181920212223242526272829303132 |
- <loading id="loading"/>
- <van-sticky>
- <header class="header_custom">
- <view slot="content" class="header-title flex_row">
- <view class="flex_row">
- <view class='goback' bindtap="goBack">
- <van-icon name="arrow-left" size="18px"/>
- </view>
- <view class="gohome" bindtap="goHome">
- <image src="../../static/images/home.png" />
- </view>
- </view>
- <text class="titlename">调节记录</text>
- <text class="righttext"></text>
- </view>
- </header>
- </van-sticky>
- <view class="loglist">
- <block wx:for="{{dataList}}">
- <view class="log_item flex_row " wx:key="{{index}}">
- <view class="logaction one-line-text">对<text>{{item.spaceName}}</text>
- 提交了{{item.text}}
- </view>
- <text class="logtime">{{item.createTime}}</text>
- </view>
- </block>
- <view class="nomore flex_row" wx:if="{{dataList&&(dataList.length==allCount)}}">没有更多了哦!</view>
- <view class="nolist_box" wx:if="{{dataList&&(!dataList.length)}}">
- <image src="../../static/images/nolog.png" />
- <text>暂无调节记录</text>
- </view>
- </view>
|