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.

14 lines
475 B

<view class="table">
<view class="table-row">
<view class="table-cell">点名时间</view>
<view class="table-cell">点名老师</view>
<view class="table-cell">积分变化</view>
</view>
<view wx:for="{{records}}" wx:key="unique">
<view class="table-row">
<view class="table-cell">{{item.callTime}}</view>
<view class="table-cell">{{item.adminName}}</view>
<view class="table-cell">{{item.score}}</view>
</view>
</view>
</view>