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.
147 lines
4.5 KiB
147 lines
4.5 KiB
<!--pages/Tprofile/Tprofile.wxml-->
|
|
<view>
|
|
<form bindsubmit="submit">
|
|
<view class="container">
|
|
<view class="input-group">
|
|
<text>姓名:</text>
|
|
<input type="text" name="name" placeholder="请输入您的姓名" class="input" />
|
|
</view>
|
|
<view class="input-group">
|
|
<text>科目:</text>
|
|
<input type="text" name="subject" placeholder="请输入科目" class="input" />
|
|
</view>
|
|
<view class="input-group">
|
|
<text>时薪:</text>
|
|
<input type="number" name="salary" placeholder="请输入时薪" class="input" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="container">
|
|
<view class="input-group">
|
|
<text>就读学校:</text>
|
|
<input type="text" placeholder="输入现/曾经就读学校" class="input" />
|
|
</view>
|
|
<view class="input-group">
|
|
<text>年级专业:</text>
|
|
<input type="text" placeholder="输入就读专业及年级" class="input" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="container">
|
|
<view class="input-group">
|
|
<text>就读学校:</text>
|
|
<input type="text" placeholder="输入现/曾经就读学校" class="input" />
|
|
</view>
|
|
<view class="input-group">
|
|
<text>年级专业:</text>
|
|
<input type="text" placeholder="输入就读专业及年级" class="input" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="container">
|
|
<text>空闲时间:</text>
|
|
<view class="table-container">
|
|
<view class="row">
|
|
<view class="cell"></view>
|
|
<view class="header-cell">周一</view>
|
|
<view class="header-cell">周二</view>
|
|
<view class="header-cell">周三</view>
|
|
<view class="header-cell">周四</view>
|
|
<view class="header-cell">周五</view>
|
|
<view class="header-cell">周六</view>
|
|
<view class="header-cell">周日</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="cell">上午</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="cell">中午</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="cell">下午</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
<view class="checkbox-cell">
|
|
<checkbox></checkbox>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="container">
|
|
<view class="input-group">
|
|
<text>教员风采:</text>
|
|
<input type="text" placeholder="输入个人简介、家教经验" class="input" />
|
|
</view>
|
|
<view class="input-group">
|
|
<text>风采展示图:</text>
|
|
<input type="text" placeholder="在此插入图片" class="input" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="container">
|
|
<!-- 添加提交按钮 -->
|
|
<button class="submit-btn" form-type="submit">提交</button>
|
|
</view>
|
|
|
|
</form>
|
|
</view>
|