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.

27 lines
1.0 KiB

<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="{{courseList}}" wx:key="unique">
<button class="course" bindtap="enterCourse" data-id="{{item.courseId}}" data-description="{{item.description}}">
<image class="icon1" src="/assets/course/多栏明细账.png" mode="aspectFit"/>
<text class="name">{{item.description}}</text>
<image class="icon2" src="/assets/course/arrow-right.png" mode="aspectFit"/>
</button>
</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">删除</view>
</view>
</view>
</view>