123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- // pages/login/login.js
- let log = require('../../utils/log.js');
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- loginName: null,
- password: null,
- checkPass: false,
- errorMsg: '',
- passwordFocus:false
- },
- onError(e) {
- wx.showModal({
- title: '温馨提示',
- content: '当前网络环境较差,无法连接服务器,请稍后重试。有问题请联系客服电话18211188302,接听时段08:00-17:00。',
- showCancel: false
- });
- },
- inputAccount(e) {
- this.setData({
- loginName: e.detail.value
- });
- //console.log(e);
- if (this.data.loginName && this.data.password) {
- this.setData({
- checkPass: true
- });
- } else {
- this.setData({
- checkPass: false
- });
- }
- },
- inputPassword(e) {
- this.setData({
- password: e.detail.value
- });
- //console.log(e);
- if (this.data.loginName && this.data.password) {
- this.setData({
- checkPass: true
- });
- } else {
- this.setData({
- checkPass: false
- });
- }
- },
- loginUser(e) {
- let that = this;
- let { loginName, password } = this.data;
- log.info('[登录]', '[登录]', '[请求]', { loginName, password });
- wx.request({
- url: getApp().globalData.postHeadAgreement +'/restapi/wechat/login',
- data: {
- loginName,
- password
- },
- method: 'POST',
- success(res) {
- //console.log(res1);
- //console.log(res1.data.code == 1);
- log.info('[登录]', '[登录]', '[响应]', res.data);
- if (res.data.code == 1) {
- that.setData({
- password: null,
- passwordFocus:true//,
- //errorMsg: res.data.msg
- });
- wx.showModal({
- title: '提示',
- content:res.data.msg,
- showCancel:false,
- confirmColor:'#4359b5'
- });
- log.info('[登录]', '[登录]', '[失败code==1]', res.data);
- } else {
- //返回该用户
- //跳转到上一页
- wx.setStorageSync("userInfo", res.data);
- wx.setStorageSync("isLogin", true);
- //let url = `/pages/ucenter/index/index`;
- log.info('[登录]', '[登录]', '[成功返回上一个界面]', res.data);
- wx.navigateBack();
- //wx.redirectTo({
- // url
- //});
- }
- },
- fail(e){
- getApp().showNetworkError();
- }
- });
- },
- goToRegister(e) {
- console.log(e);
- let url = '/pages/register/register';
- wx.redirectTo({
- url
- })
- },
- goToForget(e){
- console.log(e);
- let url = '/pages/forget/forget';
- wx.redirectTo({
- url
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- log.info('[登录]', '[加载完成]');
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|