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.
11 lines
684 B
11 lines
684 B
<!--components/modal/join_course/join_course.wxml-->
|
|
<modal id="modal" hidden="{{!show_join_course_modal}}" title="加入课堂" confirm-text="提交" cancel-text="取消" bindcancel="cancel_join_course_modal" bindconfirm="join_course">
|
|
<input type='text' bindinput="update_invite_code" class="code-input" placeholder="邀请码" auto-focus/>
|
|
<checkbox-group bindchange="update_identities">
|
|
<text>身份:</text>
|
|
<lable class="identity"><checkbox value="professor"/>教师</lable>
|
|
<lable class="identity"><checkbox value="assistant_professor"/>助教</lable>
|
|
<lable class="identity"><checkbox value="student"/>学生</lable>
|
|
</checkbox-group>
|
|
</modal>
|