|
|
@@ -4,37 +4,43 @@
|
|
|
<h3 class="title">上海市水务海洋数字孪生模型服务系统</h3>
|
|
|
<el-form-item prop="username">
|
|
|
<el-input
|
|
|
- v-model="loginForm.username"
|
|
|
- type="text"
|
|
|
- size="large"
|
|
|
- auto-complete="off"
|
|
|
- placeholder="账号"
|
|
|
+ v-model="loginForm.username"
|
|
|
+ type="text"
|
|
|
+ size="large"
|
|
|
+ auto-complete="off"
|
|
|
+ placeholder="账号"
|
|
|
>
|
|
|
- <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template>
|
|
|
+ <template #prefix>
|
|
|
+ <svg-icon icon-class="user" class="el-input__icon input-icon"/>
|
|
|
+ </template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="password">
|
|
|
<el-input
|
|
|
- v-model="loginForm.password"
|
|
|
- type="password"
|
|
|
- size="large"
|
|
|
- auto-complete="off"
|
|
|
- placeholder="密码"
|
|
|
- @keyup.enter="handleLogin"
|
|
|
+ v-model="loginForm.password"
|
|
|
+ type="password"
|
|
|
+ size="large"
|
|
|
+ auto-complete="off"
|
|
|
+ placeholder="密码"
|
|
|
+ @keyup.enter="handleLogin"
|
|
|
>
|
|
|
- <template #prefix><svg-icon icon-class="password" class="el-input__icon input-icon" /></template>
|
|
|
+ <template #prefix>
|
|
|
+ <svg-icon icon-class="password" class="el-input__icon input-icon"/>
|
|
|
+ </template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="code" v-if="captchaEnabled">
|
|
|
<el-input
|
|
|
- v-model="loginForm.code"
|
|
|
- size="large"
|
|
|
- auto-complete="off"
|
|
|
- placeholder="验证码"
|
|
|
- style="width: 63%"
|
|
|
- @keyup.enter="handleLogin"
|
|
|
+ v-model="loginForm.code"
|
|
|
+ size="large"
|
|
|
+ auto-complete="off"
|
|
|
+ placeholder="验证码"
|
|
|
+ style="width: 63%"
|
|
|
+ @keyup.enter="handleLogin"
|
|
|
>
|
|
|
- <template #prefix><svg-icon icon-class="validCode" class="el-input__icon input-icon" /></template>
|
|
|
+ <template #prefix>
|
|
|
+ <svg-icon icon-class="validCode" class="el-input__icon input-icon"/>
|
|
|
+ </template>
|
|
|
</el-input>
|
|
|
<div class="login-code">
|
|
|
<img :src="codeUrl" @click="getCode" class="login-code-img"/>
|
|
|
@@ -43,11 +49,11 @@
|
|
|
<el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">记住密码</el-checkbox>
|
|
|
<el-form-item style="width:100%;">
|
|
|
<el-button
|
|
|
- :loading="loading"
|
|
|
- size="large"
|
|
|
- type="primary"
|
|
|
- style="width:100%;"
|
|
|
- @click.prevent="handleLogin"
|
|
|
+ :loading="loading"
|
|
|
+ size="large"
|
|
|
+ type="primary"
|
|
|
+ style="width:100%;"
|
|
|
+ @click.prevent="handleLogin"
|
|
|
>
|
|
|
<span v-if="!loading">登 录</span>
|
|
|
<span v-else>登 录 中...</span>
|
|
|
@@ -59,34 +65,36 @@
|
|
|
</el-form>
|
|
|
<!-- 底部 -->
|
|
|
<div class="el-login-footer">
|
|
|
- <span>Copyright © 2018-2024 ruoyi.vip All Rights Reserved.</span>
|
|
|
+ <!-- <span>Copyright © 2018-2024 ruoyi.vip All Rights Reserved.</span>-->
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { getCodeImg } from "@/api/login";
|
|
|
+import {getCodeImg} from "@/api/login";
|
|
|
import Cookies from "js-cookie";
|
|
|
-import { encrypt, decrypt } from "@/utils/jsencrypt";
|
|
|
+import {encrypt, decrypt} from "@/utils/jsencrypt";
|
|
|
import useUserStore from '@/store/modules/user'
|
|
|
|
|
|
const userStore = useUserStore()
|
|
|
const route = useRoute();
|
|
|
const router = useRouter();
|
|
|
-const { proxy } = getCurrentInstance();
|
|
|
+const {proxy} = getCurrentInstance();
|
|
|
|
|
|
const loginForm = ref({
|
|
|
- username: "admin",
|
|
|
- password: "Gw#$1601",
|
|
|
+ username: "",
|
|
|
+ password: "",
|
|
|
+ // username: "admin",
|
|
|
+ // password: "Gw#$1601",
|
|
|
rememberMe: false,
|
|
|
code: "",
|
|
|
uuid: ""
|
|
|
});
|
|
|
|
|
|
const loginRules = {
|
|
|
- username: [{ required: true, trigger: "blur", message: "请输入您的账号" }],
|
|
|
- password: [{ required: true, trigger: "blur", message: "请输入您的密码" }],
|
|
|
- code: [{ required: true, trigger: "change", message: "请输入验证码" }]
|
|
|
+ username: [{required: true, trigger: "blur", message: "请输入您的账号"}],
|
|
|
+ password: [{required: true, trigger: "blur", message: "请输入您的密码"}],
|
|
|
+ code: [{required: true, trigger: "change", message: "请输入验证码"}]
|
|
|
};
|
|
|
|
|
|
const codeUrl = ref("");
|
|
|
@@ -98,8 +106,8 @@ const register = ref(false);
|
|
|
const redirect = ref(undefined);
|
|
|
|
|
|
watch(route, (newRoute) => {
|
|
|
- redirect.value = newRoute.query && newRoute.query.redirect;
|
|
|
-}, { immediate: true });
|
|
|
+ redirect.value = newRoute.query && newRoute.query.redirect;
|
|
|
+}, {immediate: true});
|
|
|
|
|
|
function handleLogin() {
|
|
|
proxy.$refs.loginRef.validate(valid => {
|
|
|
@@ -107,9 +115,9 @@ function handleLogin() {
|
|
|
loading.value = true;
|
|
|
// 勾选了需要记住密码设置在 cookie 中设置记住用户名和密码
|
|
|
if (loginForm.value.rememberMe) {
|
|
|
- Cookies.set("username", loginForm.value.username, { expires: 30 });
|
|
|
- Cookies.set("password", encrypt(loginForm.value.password), { expires: 30 });
|
|
|
- Cookies.set("rememberMe", loginForm.value.rememberMe, { expires: 30 });
|
|
|
+ Cookies.set("username", loginForm.value.username, {expires: 30});
|
|
|
+ Cookies.set("password", encrypt(loginForm.value.password), {expires: 30});
|
|
|
+ Cookies.set("rememberMe", loginForm.value.rememberMe, {expires: 30});
|
|
|
} else {
|
|
|
// 否则移除
|
|
|
Cookies.remove("username");
|
|
|
@@ -171,6 +179,7 @@ getCookie();
|
|
|
background-image: url("../assets/images/login-background.jpg");
|
|
|
background-size: cover;
|
|
|
}
|
|
|
+
|
|
|
.title {
|
|
|
margin: 0px auto 30px auto;
|
|
|
text-align: center;
|
|
|
@@ -182,32 +191,39 @@ getCookie();
|
|
|
background: #ffffff;
|
|
|
width: 400px;
|
|
|
padding: 25px 25px 5px 25px;
|
|
|
+
|
|
|
.el-input {
|
|
|
height: 40px;
|
|
|
+
|
|
|
input {
|
|
|
height: 40px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.input-icon {
|
|
|
height: 39px;
|
|
|
width: 14px;
|
|
|
margin-left: 0px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.login-tip {
|
|
|
font-size: 13px;
|
|
|
text-align: center;
|
|
|
color: #bfbfbf;
|
|
|
}
|
|
|
+
|
|
|
.login-code {
|
|
|
width: 33%;
|
|
|
height: 40px;
|
|
|
float: right;
|
|
|
+
|
|
|
img {
|
|
|
cursor: pointer;
|
|
|
vertical-align: middle;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.el-login-footer {
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
|
@@ -220,6 +236,7 @@ getCookie();
|
|
|
font-size: 12px;
|
|
|
letter-spacing: 1px;
|
|
|
}
|
|
|
+
|
|
|
.login-code-img {
|
|
|
height: 40px;
|
|
|
padding-left: 12px;
|