码农笔录博客源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.6 KiB

пре 6 година
{{template "header" .}}
пре 5 година
<meta name="keywords" content="码农随笔,个人随笔,博客,个人博客,个人笔记,技术博客,免费云笔记,云笔记,随笔,IT博客,谷歌地图,码农笔录,aiprose">
<title>登录 - 码农随笔</title>
пре 6 година
</head>
<body>
<div class="root-container">
{{template "nav" .}}
<div class="login-root">
<div class="input-container">
<div class="input-root">
пре 6 година
<div class="inputs-class">
пре 4 година
<i-form>
<form-item prop="user">
<i-input type="text" v-model="user.username" placeholder="请输入用户名">
<Icon type="ios-person-outline" slot="prepend"></Icon>
</i-input>
</form-item>
<form-item prop="password">
<i-input type="password" v-model="user.userpwd" placeholder="请输入密码">
<Icon type="ios-lock-outline" slot="prepend"></Icon>
</i-input>
</form-item>
<i-button type="info" long @click="login">快速登录</i-button>
</i-form>
<div class="login-bottom">
<a href="/regist">快速注册</a>
пре 6 година
</div>
</div>
пре 6 година
</div>
</div>
</div>
</div>
</body>
пре 6 година
<script>
пре 4 година
var app = new Vue({
el: ".root-container",
delimiters: ['${', '}'],
data: {
user: {}
},
methods: {
login (){
var _this= this
if (this.user.username.trim().length < 4) {
this.$Message.warning('用户名最低4位');
// this.$Notice.warning({
// title: '用户名最低4位',
// desc: ''
// });
return
}
if (this.user.userpwd.trim().length < 6) {
this.$Message.warning('密码最低6位');
return
}
$.post('/api/login', this.user,
пре 6 година
function (data) {
if (data.Status == 1) {
пре 4 година
_this.$Message.warning(data.Msg);
пре 6 година
} else {
пре 4 година
_this.$Message.success("登录成功");
пре 6 година
window.location.href = "/"
пре 6 година
}
}, 'json')
пре 4 година
}
}
пре 6 година
})
</script>
пре 6 година
<script type="text/javascript" src="/static/js/seo.js"></script>
пре 6 година
</html>