25 lines
669 B
JavaScript
25 lines
669 B
JavaScript
if (parent.callback) {
|
|
//如果是在子框架内就把首页刷新
|
|
parent.callback();
|
|
}
|
|
var loginApp = new Vue({
|
|
el: '.login-main',
|
|
data: {
|
|
username: '',
|
|
password: '',
|
|
loading: false
|
|
},
|
|
methods: {
|
|
login: function () {
|
|
this.loading = true;
|
|
if (this.username === "" || this.password === "") {
|
|
this.$message.error("Please enter your username or password!");
|
|
this.loading = false;
|
|
return ;
|
|
}
|
|
this.$nextTick(function () {
|
|
document.getElementById('login-form').submit();
|
|
});
|
|
}
|
|
}
|
|
}); |