12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!--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>
- <button class="subBtn" type="primary">发布课程</button>
|