87 lines
2.1 KiB
JavaScript
87 lines
2.1 KiB
JavaScript
//index.js
|
|
//获取应用实例
|
|
const app = getApp()
|
|
const api = require("../../utils/request.js");
|
|
Page({
|
|
data: {
|
|
userInfo: {},
|
|
hasUserInfo: false,
|
|
canIUse: wx.canIUse('button.open-type.getUserInfo')
|
|
},
|
|
//事件处理函数
|
|
bindViewTap: function () {
|
|
wx.navigateTo({
|
|
url: '../logs/logs'
|
|
})
|
|
},
|
|
phoneChange: function (e) {
|
|
this.data.phone = e.detail.value
|
|
},
|
|
codeChange: function (e) {
|
|
this.data.code = e.detail.value
|
|
},
|
|
onLoad: function () {
|
|
wx.hideHomeButton()
|
|
if (app.globalData.userInfo) {
|
|
this.setData({
|
|
userInfo: app.globalData.userInfo,
|
|
hasUserInfo: true
|
|
})
|
|
} else if (this.data.canIUse) {
|
|
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
|
|
// 所以此处加入 callback 以防止这种情况
|
|
app.userInfoReadyCallback = res => {
|
|
this.setData({
|
|
userInfo: res.userInfo,
|
|
hasUserInfo: true
|
|
})
|
|
}
|
|
} else {
|
|
// 在没有 open-type=getUserInfo 版本的兼容处理
|
|
wx.getUserInfo({
|
|
success: res => {
|
|
app.globalData.userInfo = res.userInfo
|
|
this.setData({
|
|
userInfo: res.userInfo,
|
|
hasUserInfo: true
|
|
})
|
|
}
|
|
})
|
|
}
|
|
},
|
|
getUserInfo: function (e) {
|
|
app.globalData.userInfo = e.detail.userInfo
|
|
this.setData({
|
|
userInfo: e.detail.userInfo,
|
|
hasUserInfo: true
|
|
})
|
|
},
|
|
sendMsg : function (e){
|
|
api.request('crm/consumer/sendcode', 'GET', {phone:this.data.phone}).then(res => {
|
|
wx.showToast({
|
|
title: '验证码发送成功!',
|
|
icon:'none'
|
|
})
|
|
})
|
|
},
|
|
onGetInfo : function (e){
|
|
this.setData({
|
|
userInfo: e.detail.userInfo
|
|
})
|
|
this.denglu()
|
|
},
|
|
goMain: function (){
|
|
wx.reLaunch({
|
|
url: '/pages/main/main',
|
|
})
|
|
},
|
|
denglu: function () {
|
|
api.request('crm/consumer/register/', 'POST', { phone: this.data.phone, code: this.data.code }).then(res => {
|
|
getApp().onLaunch()
|
|
})
|
|
wx.switchTab({
|
|
url: '/pages/main/main',
|
|
})
|
|
}
|
|
})
|