|
@@ -2,11 +2,11 @@
|
|
<div class="login-container">
|
|
<div class="login-container">
|
|
<el-form :model="loginForm" status-icon :rules="rules" ref="loginForm" autocomplete="off" class="login-form">
|
|
<el-form :model="loginForm" status-icon :rules="rules" ref="loginForm" autocomplete="off" class="login-form">
|
|
<h3 class="title">登录</h3>
|
|
<h3 class="title">登录</h3>
|
|
- <el-form-item label="账号" prop="userName" class="el-form-item" label-width="50px">
|
|
|
|
- <el-input v-model="loginForm.userName" name="userName" type="text" autocomplete="off" placeholder="userName"/>
|
|
|
|
|
|
+ <el-form-item prop="userName" class="el-form-item">
|
|
|
|
+ <el-input v-model="loginForm.userName" name="userName" type="text" autocomplete="off" placeholder="账号"/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="密码" prop="password" class="el-form-item" label-width="50px">
|
|
|
|
- <el-input type="password" v-model="loginForm.password" autocomplete="off" show-password placeholder="password"/>
|
|
|
|
|
|
+ <el-form-item prop="password" class="el-form-item">
|
|
|
|
+ <el-input type="password" v-model="loginForm.password" autocomplete="off" show-password placeholder="密码"/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" @click="submitForm('loginForm')">登录</el-button>
|
|
<el-button type="primary" @click="submitForm('loginForm')">登录</el-button>
|
|
@@ -64,6 +64,8 @@
|
|
// const password = this.loginForm.password;
|
|
// const password = this.loginForm.password;
|
|
this.$store.dispatch('Login', this.loginForm).then(() => {
|
|
this.$store.dispatch('Login', this.loginForm).then(() => {
|
|
alert('登录成功');
|
|
alert('登录成功');
|
|
|
|
+ this.$router.push({ path: '/nav/nav1' })
|
|
|
|
+ // router.push({ path: '/nav/nav1' })
|
|
}).catch(() => {
|
|
}).catch(() => {
|
|
alert('登录失败');
|
|
alert('登录失败');
|
|
})
|
|
})
|