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.
pk8f3pmu2/pages/classsetting/classsetting.wxml

26 lines
1020 B

<!--pages/classsetting/classsetting.wxml-->
<view class="container">
<view class="flex-wrap header">
<input
placeholder="课程名:{{classname}}"
bindinput="update_classname"
bindconfirm="change"
value="{{new_classname}}"
class="change_name"/>
<text style="display: {{new_classname ? 'inline': 'none'}}" class="change tappable" ontap="change_name">更改课程名</text>
</view>
<view class="student-list">
<view class="flex-wrap title">
<text>学员列表</text><text class="hint">长按移除</text>
</view>
<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>