页面跳转

首先登陆页面搭建好




评教系统-学生类

学号: 密码:

接口接好 如果老师提供可以用老师的,如果没有则自己后台写


  login:function(e){
    console.log(e.detail.value);
    wx.request({
    url: ; //仅为示例,并非真实的接口地址
      data: 
      {
        username:
        e.detail.value.no,
      password:e.detail.value.pwd
     
    },
  header: {
    'content-type': 'application/json' // 默认值
  },
  success: function (res) {
    console.log(res.data)
  }
})
  }
})
实现跳转

你可能感兴趣的:(微信开发)