微信小程序-评教系统(教师页面)

微信小程序-评教系统(教师页面)_第1张图片

在teacher.wxml里写如下代码:




评教系统-教师端









姓名:{{item.teachername}}
任课:{{item.course}}



留言
评教

 

 

在teachers.wxss修改样式

/* pages/teacher/teacher.wxss */
.container{
  height: 100%;
  display: flex;
   flex-direction: column; 
   align-items: center; 
   justify-content: space-between; 
   padding: 0 30rpx;  
  box-sizing: border-box;
}
.header{
  margin-top: 10px;
}
.section{
  width: 100%;
  height: 100%;
   background-color: whitesmoke; 
  margin-top: 10px;
}
.section1{
  width: 100%;
  height: 100px;
   border-bottom: solid 1px #999;
}
 
 .photo{
  width: 120px;
  height: 200px;
  margin-left: 10px;
 }  
.img{
  width: 80px;
  height: 80px;
  margin-top: 10px; 
  margin-left: 10px;
}  
.menu{
  margin-left: 140px;
  margin-top: -190px;
}
.name{
  color: darkcyan;
  font-size: 14px;
}
.course{
   font-size: 13px;
   color: #999;
    margin-top: 4px; 
}
.btn{
  margin-left: 120px;
  margin-top: 15px;
  display: flex;
  flex-direction: row;
}
navigator{
  width: 50px;
  height: 25px;
  font-size: 12px;
  line-height: 25px;
  text-align: center;
  border: solid 1px #ccc;
  margin-left: 15px;
} 

在teachers.js里来处理用户的操作

/**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    var url ="https://www.lishuming.top/pj/index.php/student/api/teachers";
    var student = wx.getStorageSync('student');
    var classid = student.classid;
    console.log(classid);

    wx.request({
      url: url, //仅为示例,并非真实的接口地址
      data: {
        classid: classid,
      },
      header: {
        'content-type': 'application/json' // 默认值
      },
      success:(res)=> {
        console.log(res.data)
        this.setData({ teachers: res.data });
      }
    })
  },

最后页面为:

微信小程序-评教系统(教师页面)_第2张图片


你可能感兴趣的:(微信小程序-评教系统(教师页面))