lyfO_o
2022-05-06 9b7b2d5edd02e1630a28cdbdba868670643dc9d8
src/views/login/components/login-form.vue
@@ -1,7 +1,6 @@
<template>
    <div class="login-form">
        <div class="login-form-title"><span>登录</span></div>
        <div style="position: relative" ><div class="pwd-change-redirect"><el-link :underline="false" type="primary" @click="()=>{ this.$router.push({path:'/pwdChange'})}">忘记密码</el-link></div></div>
        <div class="login-form-main">
            <el-form ref="loginForm" :model="loginForm" :rules="loginRules" :inline="false" class="loginForm" @keydown.enter.native="handleSubmit">
                <div class="login-form-main-user"><span>用户名</span></div>
@@ -38,6 +37,7 @@
                </div>
            </el-form>
        </div>
        <div class="pwd-change-redirect"><el-link :underline="false" type="primary" @click="()=>{ this.$router.push({path:'/pwdChange'})}">忘记密码</el-link></div>
        <div class="login-form-button">
            <el-button class="login-form-login-button" :loading="logingLoading" type="primary" @click.native.prevent="handleSubmit">
                  <span>
@@ -255,7 +255,7 @@
    }
    .pwd-change-redirect{
        position: relative;
        left: 340px;
        top: 0;
        top: 10px;
        right: 10px;
    }
</style>