-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 2.09 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<!--js include-->
{{template "/chat/head.shtml"}}
</head>
<body>
<header class="mui-bar mui-bar-nav">
<h1 class="mui-title">登录</h1>
</header>
{{.}}
<div class="mui-content login-page" id="pageapp">
<form id='login-form' class="mui-input-group login-from">
<div class="mui-input-row">
<input v-model="user.name" placeholder="请输入用户名" type="text" class="mui-input-clear mui-input" >
</div>
<div class="mui-input-row">
<input v-model="user.password" placeholder="请输入密码" type="password" class="mui-input-clear mui-input" >
</div>
</form>
<div class="mui-content-padded">
<button @click="login" type="button" class="mui-btn mui-btn-block mui-btn-primary btn-login">登录</button>
<div class="link-area"><a id='reg' href="/toRegister">注册账号</a> <span class="spliter">|</span> <a id='forgetPassword'>忘记密码</a>
</div>
</div>
<div class="mui-content-padded oauth-area">
</div>
</div>
</body>
</html>
<script>
var app = new Vue({
el:"#pageapp",
data:function(){
return {
user:{
name:"",
password:"",
}
}
},
methods:{
login:function(){
//检测手机号是否正确
console.log("login")
//检测密码是否为空
//网络请求
//封装了promis
util.post("user/findUserByNameAndPwd",this.user).then(res=>{
console.log(res)
if(res.code!=0){
mui.toast(res.message)
}else{
var url = "/toChat?userId="+res.data.ID+"&token="+res.data.Identity
userInfo(res.data)
userId(res.data.ID)
mui.toast("登录成功,即将跳转")
location.href = url
}
})
},
}
})
</script>