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.
15 lines
600 B
15 lines
600 B
5 years ago
|
<!--pages/classsetting/classsetting.wxml-->
|
||
|
<view class="container">
|
||
|
<view class="student-list">
|
||
|
<text>学员列表</text>
|
||
|
<block wx:for="{{presences}}" wx:for-item="presence" wx:key="objectId">
|
||
|
<view hidden="{{presence.student_id==teacher_id}}" class="student flex-wrap" data-id="{{presence.objectId}}" bindlongtap="del_student">
|
||
|
<text>{{presence.student_name}}</text>
|
||
|
<text class="hint">{{presence.student_username}}</text>
|
||
|
</view>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="footer">
|
||
|
<button type="primary" bindtap="del_class">删除该课程</button>
|
||
|
</view>
|