login.vue 6.0 KB

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