// pages/zhghLogin/zhghLogin.js //获取应用实例 var app = getApp(); Page({ /** * 页面的初始数据 */ data: { src: app.globalData.imgUrl + '/image/bg1.jpg', logo: app.globalData.imgUrl + '/image/logo.png', companyAccount: 'admin456', companyPassword: 'admin' }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) {}, // 输入框内容 inputHandler: function (event) { var type = event.currentTarget.dataset['type']; console.log(type) console.log(event.detail.value) this.setData({ [type]: event.detail.value }) }, //登录 simulationButton: function () { const { companyAccount, companyPassword } = this.data; let that = this; wx.request({ url: app.globalData.url + '/api/socialCompany/loginCheck', method: 'POST', data: { companyAccount, companyPassword }, success: function (res) { console.log(res) if (res.data.code == 0) { wx.showToast({ title: '登录成功!', icon: 'success', duration: 1500, success: function () { wx.setStorageSync('id', res.data.data.id) setTimeout(() => { wx.navigateTo({ url: '../zhgh/zhgh' }) }, 1500); } }) } else { wx.showToast({ title: res.data.msg, icon: 'none' }) } } }) } })