|
@@ -3,20 +3,20 @@
|
|
|
<div class="aui-content__wrapper">
|
|
<div class="aui-content__wrapper">
|
|
|
<main class="aui-content">
|
|
<main class="aui-content">
|
|
|
<div class="login-header">
|
|
<div class="login-header">
|
|
|
- <h2 class="login-brand">{{ $t('brand.lg') }}</h2>
|
|
|
|
|
|
|
+ <img src="@/assets/img/login_logo.png" alt="">
|
|
|
</div>
|
|
</div>
|
|
|
<div class="login-body">
|
|
<div class="login-body">
|
|
|
- <h3 class="login-title">{{ $t('login.title') }}</h3>
|
|
|
|
|
|
|
+ <div class="login-body-title">欢迎登录</div>
|
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" status-icon>
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" status-icon>
|
|
|
<el-form-item prop="username">
|
|
<el-form-item prop="username">
|
|
|
- <el-input v-model="dataForm.username" :placeholder="$t('login.username')">
|
|
|
|
|
|
|
+ <el-input v-model="dataForm.username" placeholder="请输入用户名">
|
|
|
<span slot="prefix" class="el-input__icon">
|
|
<span slot="prefix" class="el-input__icon">
|
|
|
<svg class="icon-svg" aria-hidden="true"><use xlink:href="#icon-user"></use></svg>
|
|
<svg class="icon-svg" aria-hidden="true"><use xlink:href="#icon-user"></use></svg>
|
|
|
</span>
|
|
</span>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
<el-form-item prop="password">
|
|
<el-form-item prop="password">
|
|
|
- <el-input v-model="dataForm.password" type="password" :placeholder="$t('login.password')">
|
|
|
|
|
|
|
+ <el-input v-model="dataForm.password" type="password" placeholder="请输入密码">
|
|
|
<span slot="prefix" class="el-input__icon">
|
|
<span slot="prefix" class="el-input__icon">
|
|
|
<svg class="icon-svg" aria-hidden="true"><use xlink:href="#icon-lock"></use></svg>
|
|
<svg class="icon-svg" aria-hidden="true"><use xlink:href="#icon-lock"></use></svg>
|
|
|
</span>
|
|
</span>
|
|
@@ -25,7 +25,7 @@
|
|
|
<el-form-item prop="captcha">
|
|
<el-form-item prop="captcha">
|
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="14">
|
|
<el-col :span="14">
|
|
|
- <el-input v-model="dataForm.captcha" :placeholder="$t('login.captcha')">
|
|
|
|
|
|
|
+ <el-input v-model="dataForm.captcha" placeholder="请输入图形验证码">
|
|
|
<span slot="prefix" class="el-input__icon">
|
|
<span slot="prefix" class="el-input__icon">
|
|
|
<svg class="icon-svg" aria-hidden="true"><use xlink:href="#icon-safetycertificate"></use></svg>
|
|
<svg class="icon-svg" aria-hidden="true"><use xlink:href="#icon-safetycertificate"></use></svg>
|
|
|
</span>
|
|
</span>
|
|
@@ -37,7 +37,7 @@
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
<el-form-item>
|
|
|
- <el-button type="primary" @click="dataFormSubmitHandle()" class="w-percent-100">{{ $t('login.title') }}</el-button>
|
|
|
|
|
|
|
+ <el-button type="primary" style="margin-top: 26px;background-color: #01A463;font-size: 16px;" @click="dataFormSubmitHandle()" class="w-percent-100">{{ $t('login.title') }}</el-button>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
</div>
|
|
</div>
|