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.

74 lines
1.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

Page({
data: {
account: '',
password: ''
},
onAccountInput: function(e) {
this.setData({
account: e.detail.value
});
},
onPasswordInput: function(e) {
this.setData({
password: e.detail.value
});
},
onLogin: function() {
const that = this;
// 用户登录逻辑
console.log('登录账号:', that.data.account);
console.log('登录密码:', that.data.password);
// 这里可以添加实际的登录逻辑例如调用API
wx.request({
url: 'http://10.133.15.50:8888/admin/login',
method: 'POST',
data: {
adminId: that.data.account, // 管理员ID
password: that.data.password // 密码
},
success(res) {
console.log(res.data);
if (res.statusCode === 200) {
// 处理登录成功
that.data.isLogin = true;
wx.setStorageSync('adminId', res.data.data.adminId);
wx.setStorageSync('name', res.data.data.name);
wx.setStorageSync('token', res.data.data.token);
wx.setStorageSync('isAdmin', true);
wx.switchTab({
url: '/pages/course/course',
});
} else {
}
},
fail(err) {
}
});
wx.request({
url: 'http://10.133.15.50:8888/student/login',
method: 'POST',
data: {
studentId: that.data.account, // 学生ID
password: that.data.password // 密码
},
success(res) {
console.log(res.data);
if (res.statusCode === 200) {
// 处理登录成功
wx.setStorageSync('adminId', res.data.data.studentId);
wx.setStorageSync('name', res.data.data.name);
wx.setStorageSync('token', res.data.data.token);
wx.setStorageSync('isAdmin', false);
wx.switchTab({
url: '/pages/course/course',
});
} else {
}
},
fail(err) {
console.error(err);
}
});
},
});