|  |  |  | 
|---|
|  |  |  | load: { | 
|---|
|  |  |  | loading: false, | 
|---|
|  |  |  | btnText: '登录' | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | baseUrl: 'http://192.168.4.188:9528' | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | onLoad:function(){ | 
|---|
|  |  |  | 
|---|
|  |  |  | onLogin() { | 
|---|
|  |  |  | let that = this | 
|---|
|  |  |  | uni.request({ | 
|---|
|  |  |  | url: 'http://localhost:9528/login.action', | 
|---|
|  |  |  | url: that.baseUrl + '/login.action', | 
|---|
|  |  |  | fail(result) { | 
|---|
|  |  |  | uni.showToast({title: '请求失败'}) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | 
|---|
|  |  |  | "content-type": "application/json" | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | success(result) { | 
|---|
|  |  |  | if (result.statusCode ===  404) { | 
|---|
|  |  |  | uni.showToast({title: '请重新登录', icon: "none", position: 'top'}) | 
|---|
|  |  |  | return | 
|---|
|  |  |  | } | 
|---|
|  |  |  | let res = result.data | 
|---|
|  |  |  | if (res.code === 200 ){ | 
|---|
|  |  |  | that.load.loading = true; | 
|---|
|  |  |  | that.load.btnText = '登录中'; | 
|---|
|  |  |  | uni.setStorageSync('token', res.data.token); | 
|---|
|  |  |  | uni.setStorageSync('userName', that.user.userName); | 
|---|
|  |  |  | uni.setStorageSync('baseUrl',that.baseUrl) | 
|---|
|  |  |  | setTimeout(()=> { | 
|---|
|  |  |  | uni.showToast({title: '登录成功'}) | 
|---|
|  |  |  | setTimeout(()=> { | 
|---|