-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (69 loc) · 2.33 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
68
69
70
<!DOCTYPE html>
<html>
<head>
<!--js include-->
{{template "head.html"}}
<title>IM主页</title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<link rel="stylesheet" href="asset/plugins/mui/css/mui.css">
<link rel="stylesheet" href="asset/css/login.css">
<script src="asset/plugins/mui/js/mui.js"></script>
<script src="asset/js/vue.min.js"></script>
<script src="asset/js/util.js"></script>
</head>
<body>
<header class="mui-bar mui-bar-nav">
<h1 class="mui-title">登录</h1>
</header>
<div class="mui-content" id="pageapp">
<form id='login-form' class="mui-input-group">
<div class="mui-input-row">
<label>账号</label>
<input v-model="user.name" placeholder="请输入用户名"
type="text" class="mui-input-clear mui-input" >
</div>
<div class="mui-input-row">
<label>密码</label>
<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">登录</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(){
util.post("user/findUserByNameAndPwd",this.user).then(res=>{
console.log(res)
if(res.code!==0){
mui.toast(res.message)
}else{
userInfo(res.data)
userId(res.data.ID)
location.href = "/toChat?userId=" + res.data.ID + "&token=" + res.data.Identify
mui.toast("登录成功,即将跳转")
}
})
},
}
})
</script>