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.
20 lines
704 B
20 lines
704 B
<view class="table">
|
|
<view class="table-row">
|
|
<view class="table-cell">学号</view>
|
|
<view class="table-cell">姓名</view>
|
|
<view class="table-cell">点名次数</view>
|
|
<view class="table-cell">积分</view>
|
|
<view class="table-cell">操作</view>
|
|
</view>
|
|
<view wx:for="{{student_info}}" wx:key="unique">
|
|
<view class="table-row">
|
|
<view class="table-cell">{{item.studentId}}</view>
|
|
<view class="table-cell">{{item.name}}</view>
|
|
<view class="table-cell">{{item.callCount}}</view>
|
|
<view class="table-cell">{{item.score}}</view>
|
|
<view class="table-cell">
|
|
<text style="color: #5DADE2">删除</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |