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.
14 lines
631 B
14 lines
631 B
<!--pages/createclass/createclass.wxml-->
|
|
<view>暂不支持...</view>
|
|
<view hidden="{{true}}" class="container">
|
|
<text>创建我的课程</text>
|
|
<view class="flex-wrap input-wrap">
|
|
<text class="label">课程名称:</text>
|
|
<input value="{{new_classname}}" bindinput="updateName" id="name" class="info-input"/>
|
|
</view>
|
|
<view class="flex-wrap input-wrap">
|
|
<text class="label">教师用户名:</text>
|
|
<input value="{{new_class_teacher_username}}" id="teacher_name" class="info-input disabled" disabled="true"/>
|
|
</view>
|
|
<button bindtap="create_class">创建新课程</button>
|
|
</view> |