forked from nsjcy/frontEnd/nsjcy

liuwh
2020-04-01 de0151aaae18282e885e5ae2d84653d1131a65a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// pages/zhghLogin/zhghLogin.js
//获取应用实例
var app = getApp();
Page({
  /**
   * 页面的初始数据
   */
  data: {
    src: app.globalData.imgUrl + '/image/bg1.jpg',
    logo: app.globalData.imgUrl + '/image/logo.png',
    companyAccount: '',
    companyPassword: ''
  },
  /**
   * 生命周期函数--监听页面加载
   */
  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;
    if (!companyAccount) {
      return wx.showToast({
        title: '账号不能为空',
        icon: 'none'
      })
    }
    if (!companyPassword) {
      return wx.showToast({
        title: '密码不能为空',
        icon: 'none'
      })
    }
    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'
          })
        }
      }
    })
  }
})