login.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <div class="login">
  3. <el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form">
  4. <h3 class="title">遥感监测系统</h3>
  5. <el-form-item prop="username">
  6. <el-input
  7. v-model="loginForm.username"
  8. type="text"
  9. size="large"
  10. auto-complete="off"
  11. placeholder="账号"
  12. >
  13. <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template>
  14. </el-input>
  15. </el-form-item>
  16. <el-form-item prop="password">
  17. <el-input
  18. v-model="loginForm.password"
  19. type="password"
  20. size="large"
  21. auto-complete="off"
  22. placeholder="密码"
  23. @keyup.enter="handleLogin"
  24. >
  25. <template #prefix><svg-icon icon-class="password" class="el-input__icon input-icon" /></template>
  26. </el-input>
  27. </el-form-item>
  28. <el-form-item prop="code" v-if="captchaEnabled">
  29. <el-input
  30. v-model="loginForm.code"
  31. size="large"
  32. auto-complete="off"
  33. placeholder="验证码"
  34. style="width: 63%"
  35. @keyup.enter="handleLogin"
  36. >
  37. <template #prefix><svg-icon icon-class="validCode" class="el-input__icon input-icon" /></template>
  38. </el-input>
  39. <div class="login-code">
  40. <img :src="codeUrl" @click="getCode" class="login-code-img"/>
  41. </div>
  42. </el-form-item>
  43. <el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">记住密码</el-checkbox>
  44. <el-form-item style="width:100%;">
  45. <el-button
  46. :loading="loading"
  47. size="large"
  48. type="primary"
  49. style="width:100%;"
  50. @click.prevent="handleLogin"
  51. >
  52. <span v-if="!loading">登 录</span>
  53. <span v-else>登 录 中...</span>
  54. </el-button>
  55. <div style="float: right;" v-if="register">
  56. <router-link class="link-type" :to="'/register'">立即注册</router-link>
  57. </div>
  58. </el-form-item>
  59. </el-form>
  60. <!-- 底部 -->
  61. <div class="el-login-footer">
  62. <span>Copyright © 2018-2025 ruoyi.vip All Rights Reserved.</span>
  63. </div>
  64. </div>
  65. </template>
  66. <script setup>
  67. import { getCodeImg } from "@/api/login";
  68. import Cookies from "js-cookie";
  69. import { encrypt, decrypt } from "@/utils/jsencrypt";
  70. import useUserStore from '@/store/modules/user'
  71. const userStore = useUserStore()
  72. const route = useRoute();
  73. const router = useRouter();
  74. const { proxy } = getCurrentInstance();
  75. const loginForm = ref({
  76. username: "admin",
  77. password: "admin123",
  78. rememberMe: false,
  79. code: "",
  80. uuid: ""
  81. });
  82. const loginRules = {
  83. username: [{ required: true, trigger: "blur", message: "请输入您的账号" }],
  84. password: [{ required: true, trigger: "blur", message: "请输入您的密码" }],
  85. code: [{ required: true, trigger: "change", message: "请输入验证码" }]
  86. };
  87. const codeUrl = ref("");
  88. const loading = ref(false);
  89. // 验证码开关
  90. const captchaEnabled = ref(true);
  91. // 注册开关
  92. const register = ref(false);
  93. const redirect = ref(undefined);
  94. watch(route, (newRoute) => {
  95. redirect.value = newRoute.query && newRoute.query.redirect;
  96. }, { immediate: true });
  97. function handleLogin() {
  98. proxy.$refs.loginRef.validate(valid => {
  99. if (valid) {
  100. loading.value = true;
  101. // 勾选了需要记住密码设置在 cookie 中设置记住用户名和密码
  102. if (loginForm.value.rememberMe) {
  103. Cookies.set("username", loginForm.value.username, { expires: 30 });
  104. Cookies.set("password", encrypt(loginForm.value.password), { expires: 30 });
  105. Cookies.set("rememberMe", loginForm.value.rememberMe, { expires: 30 });
  106. } else {
  107. // 否则移除
  108. Cookies.remove("username");
  109. Cookies.remove("password");
  110. Cookies.remove("rememberMe");
  111. }
  112. // 调用action的登录方法
  113. userStore.login(loginForm.value).then(() => {
  114. const query = route.query;
  115. const otherQueryParams = Object.keys(query).reduce((acc, cur) => {
  116. if (cur !== "redirect") {
  117. acc[cur] = query[cur];
  118. }
  119. return acc;
  120. }, {});
  121. router.push({ path: redirect.value || "/", query: otherQueryParams });
  122. }).catch(() => {
  123. loading.value = false;
  124. // 重新获取验证码
  125. if (captchaEnabled.value) {
  126. getCode();
  127. }
  128. });
  129. }
  130. });
  131. }
  132. function getCode() {
  133. getCodeImg().then(res => {
  134. captchaEnabled.value = res.captchaEnabled === undefined ? true : res.captchaEnabled;
  135. if (captchaEnabled.value) {
  136. codeUrl.value = "data:image/gif;base64," + res.img;
  137. loginForm.value.uuid = res.uuid;
  138. }
  139. });
  140. }
  141. function getCookie() {
  142. const username = Cookies.get("username");
  143. const password = Cookies.get("password");
  144. const rememberMe = Cookies.get("rememberMe");
  145. loginForm.value = {
  146. username: username === undefined ? loginForm.value.username : username,
  147. password: password === undefined ? loginForm.value.password : decrypt(password),
  148. rememberMe: rememberMe === undefined ? false : Boolean(rememberMe)
  149. };
  150. }
  151. getCode();
  152. getCookie();
  153. </script>
  154. <style lang='scss' scoped>
  155. .login {
  156. display: flex;
  157. justify-content: center;
  158. align-items: center;
  159. height: 100%;
  160. background-image: url("../assets/logo/ygjc.png");
  161. background-size: cover;
  162. }
  163. .title {
  164. margin: 0px auto 30px auto;
  165. text-align: center;
  166. color: #707070;
  167. }
  168. .login-form {
  169. border-radius: 6px;
  170. background: #ffffffa1;
  171. width: 400px;
  172. padding: 25px 25px 5px 25px;
  173. .el-input {
  174. height: 40px;
  175. input {
  176. height: 40px;
  177. }
  178. }
  179. .input-icon {
  180. height: 39px;
  181. width: 14px;
  182. margin-left: 0px;
  183. }
  184. }
  185. .login-tip {
  186. font-size: 13px;
  187. text-align: center;
  188. color: #bfbfbf;
  189. }
  190. .login-code {
  191. width: 33%;
  192. height: 40px;
  193. float: right;
  194. img {
  195. cursor: pointer;
  196. vertical-align: middle;
  197. }
  198. }
  199. .el-login-footer {
  200. height: 40px;
  201. line-height: 40px;
  202. position: fixed;
  203. bottom: 0;
  204. width: 100%;
  205. text-align: center;
  206. color: #fff;
  207. font-family: Arial;
  208. font-size: 12px;
  209. letter-spacing: 1px;
  210. }
  211. .login-code-img {
  212. height: 40px;
  213. padding-left: 12px;
  214. }
  215. </style>