parent
664bde5164
commit
ea08ac4594
@ -1,5 +0,0 @@
|
||||
<!--pages/Comments/Comments.wxml-->
|
||||
<view>
|
||||
|
||||
</view>
|
||||
<text>pages/Comments/Comments.wxml</text>
|
@ -1,3 +1,17 @@
|
||||
<view class="root">
|
||||
Demand 页面
|
||||
</view>
|
||||
<view class="container">
|
||||
<view class="form-box">
|
||||
<view class="form-group">
|
||||
<text>需求标题:</text>
|
||||
<input type="text" placeholder="请输入需求标题" bindinput="handleInputTitle" />
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text>需求内容:</text>
|
||||
<textarea placeholder="请输入需求内容" bindinput="handleInputContent"></textarea>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text>联系方式:</text>
|
||||
<input type="text" placeholder="请输入联系方式" bindinput="handleInputContact" />
|
||||
</view>
|
||||
</view>
|
||||
<button class="btn-submit" bindtap="handleSubmit">提交</button>
|
||||
</view>
|
||||
|
@ -1,2 +1,25 @@
|
||||
<!--pages/Homework/Homework.wxml-->
|
||||
<text>pages/Homework/Homework.wxml</text>
|
||||
<view class="container">
|
||||
<view class="form-group">
|
||||
<text>任务标题:</text>
|
||||
<input type="text" placeholder="请输入任务标题" />
|
||||
</view>
|
||||
|
||||
<view class="form-group">
|
||||
<text>任务内容:</text>
|
||||
<textarea placeholder="请输入任务内容"></textarea>
|
||||
</view>
|
||||
|
||||
<view class="form-group">
|
||||
<text>截止时间:</text>
|
||||
<input type="datetime-local" />
|
||||
</view>
|
||||
|
||||
<view class="form-group">
|
||||
<text>附件:</text>
|
||||
<button class="btn-attachment">上传附件</button>
|
||||
</view>
|
||||
|
||||
<button class="btn-submit">提交</button>
|
||||
</view>
|
||||
|
||||
|
@ -1 +1,40 @@
|
||||
/* pages/Homework/Homework.wxss */
|
||||
.container {
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.label {
|
||||
display: inline-block;
|
||||
width: 80rpx;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.input,
|
||||
.textarea {
|
||||
flex: 1;
|
||||
border: 1rpx solid #ccc;
|
||||
border-radius: 6rpx;
|
||||
padding: 10rpx;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.btn-attachment {
|
||||
background-color: #eaf0f6;
|
||||
color: #333;
|
||||
border: none;
|
||||
border-radius: 6rpx;
|
||||
padding: 8rpx 16rpx;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.btn-submit {
|
||||
background-color: #2677ff;
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 6rpx;
|
||||
padding: 12rpx 24rpx;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
@ -1,3 +1,12 @@
|
||||
<view>
|
||||
欢迎来到Recomm界面
|
||||
</view>
|
||||
<view class="container">
|
||||
<view class="teacher-info">
|
||||
<image src="/miniprogram/images/deploy_step2.png" class="avatar" />
|
||||
<view class="info">
|
||||
<text class="name">李老师</text>
|
||||
<text class="subject">全科</text>
|
||||
<text class="description">李老师拥有多年的教学经验,深受学生喜爱。</text>
|
||||
</view>
|
||||
</view>
|
||||
<button class="btn-choose">选择该老师</button>
|
||||
<button class="btn-next">下一个老师</button>
|
||||
</view>
|
||||
|
@ -1,2 +1,30 @@
|
||||
<!--pages/Tprofile/Tprofile.wxml-->
|
||||
<text>pages/Tprofile/Tprofile.wxml</text>
|
||||
<!--pages/Comments/Comments.wxml-->
|
||||
<view class="container">
|
||||
<view class="form-group">
|
||||
<text>姓名:</text>
|
||||
<input type="text" placeholder="请输入您的姓名" />
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text>手机号码:</text>
|
||||
<input type="tel" placeholder="请输入您的手机号码" />
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text>电子邮箱:</text>
|
||||
<input type="email" placeholder="请输入您的电子邮箱" />
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text>教师证号:</text>
|
||||
<input type="text" placeholder="请输入您的教师证号" />
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text>密码:</text>
|
||||
<input type="password" placeholder="请输入您的密码" />
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text>确认密码:</text>
|
||||
<input type="password" placeholder="请再次输入您的密码" />
|
||||
</view>
|
||||
<button class="btn-submit">提交</button>
|
||||
</view>
|
||||
|
||||
|
@ -1 +1,31 @@
|
||||
/* pages/Tprofile/Tprofile.wxss */
|
||||
/* pages/Tprofile/Tprofile.wxss */
|
||||
.container {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
text {
|
||||
display: inline-block;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 200px;
|
||||
height: 30px;
|
||||
padding: 5px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
button.btn-submit {
|
||||
width: 200px;
|
||||
height: 40px;
|
||||
background-color: #007bff;
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
<view>
|
||||
<div class="button-wrapper">
|
||||
<button bindtap="goToPageA">Homework</button>
|
||||
<button bindtap="goToPageB">Message</button>
|
||||
</div>
|
||||
</view>
|
Loading…
Reference in new issue