1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!--pages/coursePublish/coursePublish.wxml-->
- <view>
- <view class="course-container">
- <text class="course-title">授课科目*</text>
- <view class="course-list">
- <text class="course">主教</text>
- <view class="course-cho">
- <text>请选择</text>
- <image class="iconImg" src="../../images/down.png"></image>
- </view>
- <view class="course-cho">
- <text>请选择</text>
- <image class="iconImg" src="../../images/down.png"></image>
- </view>
- <view class="course-cho">
- <text>请选择</text>
- <image class="iconImg" src="../../images/down.png"></image>
- </view>
- </view>
- <view class="course-list">
- <text class="course">辅教</text>
- <view class="course-cho">
- <text>请选择</text>
- <image class="iconImg" src="../../images/down.png"></image>
- </view>
- <view class="course-cho">
- <text>请选择</text>
- <image class="iconImg" src="../../images/down.png"></image>
- </view>
- <view class="course-cho">
- <text>请选择</text>
- <image class="iconImg" src="../../images/down.png"></image>
- </view>
- </view>
- </view>
- <view>
- <text class="tr-title">授课时间*</text>
- <view class="tr-container">
- <view class="tr_1">
- <text class="th_0" decode="true">    </text>
- <text class="th_1">周一</text>
- <text class="th_1">周二</text>
- <text class="th_1">周三</text>
- <text class="th_1">周四</text>
- <text class="th_1">周五</text>
- <text class="th_1">周六</text>
- <text class="th_2">周日</text>
- </view>
- <view class="tr_2">
- <checkbox-group>
- <view class="th2_0">上午</view>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_2"></checkbox>
- </checkbox-group>
- </view>
- <view class="tr_2">
- <checkbox-group>
- <view class="th2_0">下午</view>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_2"></checkbox>
- </checkbox-group>
- </view>
- <view class="tr_2">
- <checkbox-group>
- <view class="th2_0">晚上</view>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_1"></checkbox>
- <checkbox class="th2_2"></checkbox>
- </checkbox-group>
- </view>
- </view>
- </view>
- <view class="suc-exap">
- <text>成功经验*</text>
- <textarea class="case" name="成功案例" id="" cols="30" rows="10" maxlength="120"></textarea>
- </view>
- <view class="suc-exap">
- <text>自我介绍*</text>
- <textarea class="case" name="成功案例" id="" cols="30" rows="10" maxlength="120"></textarea>
- </view>
- </view>
- <button class="subBtn" type="primary">发布课程</button>
|