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
431 B

<!--pages/record/record.wxml-->
<view class="bg">
<image src="/pages/images/record.png" mode="aspectFill"></image>
</view>
<view class="container">
<text class="title">出勤状况</text>
<view class="stu_list" wx:for="{{students}}" wx:for-item="item" wx:key="id">
<text class="id">{{item.id}}</text>
<text class="name">{{item.name}}</text>
<text class="point">积分数:{{item.point}}</text>
</view>
</view>