login-page.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <template>
  2. <div class="login-panel">
  3. <div class="login-title">
  4. <p>
  5. <img
  6. src="@/assets/imgs/login-icon.png"
  7. alt=""
  8. class="login-img"
  9. />发电场站
  10. </p>
  11. <div class="login-name">生产实时运营管理平台</div>
  12. </div>
  13. <el-form
  14. ref="loginRef"
  15. :model="loginForm"
  16. :rules="loginRules"
  17. class="login-form"
  18. >
  19. <el-form-item prop="username">
  20. <el-input
  21. v-model="loginForm.username"
  22. size="large"
  23. placeholder="请输入账号"
  24. >
  25. <template #prefix>
  26. <i class="svg-icon svg-icon-white">
  27. <SvgIcon svgid="svg-user"></SvgIcon>
  28. </i>
  29. </template>
  30. </el-input>
  31. </el-form-item>
  32. <el-form-item prop="password">
  33. <el-input
  34. v-model="loginForm.password"
  35. placeholder="请输入密码"
  36. show-password
  37. @keyup.enter="Login"
  38. >
  39. <template #prefix>
  40. <el-icon size="20"><Lock /></el-icon>
  41. </template>
  42. </el-input>
  43. </el-form-item>
  44. </el-form>
  45. <div class="hintText">
  46. <el-checkbox v-model="loginForm.rememberMe" @change="updateRemember"
  47. >记住用户名
  48. </el-checkbox>
  49. </div>
  50. <el-button :loading="loading" class="login-btn" @click.enter="Login">
  51. <span v-if="!loading">登 录</span>
  52. <span v-else>登 录 中...</span>
  53. </el-button>
  54. </div>
  55. </template>
  56. <script>
  57. import { login } from "@/api/common.js";
  58. import Cookies from "js-cookie";
  59. import { Base64 } from "js-base64";
  60. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  61. export default {
  62. data() {
  63. return {
  64. loginForm: {
  65. username: "",
  66. password: "",
  67. rememberMe: false,
  68. },
  69. redirectUrl: "",
  70. loading: false,
  71. loginRules: {
  72. username: [
  73. { required: true, trigger: "blur", message: "请输入您的账号" },
  74. ],
  75. password: [
  76. { min: 6, max: 20, message: "长度在6到20个字符", trigger: "blur" },
  77. // {
  78. // min: 6,
  79. // max: 20,
  80. // pattern: /(?=.*\d)(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{6,20}/,
  81. // message: "密码必须由数字、字母和特殊字符组成",
  82. // trigger: "blur",
  83. // },
  84. ],
  85. },
  86. };
  87. },
  88. emits: {
  89. onLogin: null,
  90. },
  91. components: { SvgIcon },
  92. watch: {
  93. $route: {
  94. handler(val) {
  95. console.log(val);
  96. this.redirectUrl = val.query.redirect ? val.query.redirect : "/";
  97. },
  98. immediate: true,
  99. },
  100. },
  101. methods: {
  102. Login() {
  103. let that = this;
  104. that.$refs.loginRef.validate((valid) => {
  105. that.loading = true;
  106. if (!valid) return;
  107. if (that.loginForm.rememberMe) {
  108. Cookies.set("username", that.loginForm.username, { expires: 300 });
  109. Cookies.set("password", Base64.encode(that.loginForm.password), {
  110. expires: 300,
  111. });
  112. Cookies.set("rememberMe", that.loginForm.rememberMe, {
  113. expires: 300,
  114. });
  115. } else {
  116. // 否则移除
  117. Cookies.remove("username");
  118. Cookies.remove("password");
  119. Cookies.remove("rememberMe");
  120. }
  121. login(this.loginForm).then((data) => {
  122. if (data.code == "200") {
  123. that.BASE.showMsg({
  124. msg: "登录成功",
  125. type: "success",
  126. });
  127. this.loading = false;
  128. this.$store.commit("user/SET_TOKEN", data);
  129. this.$emit("onLogin", {
  130. token: data.token,
  131. username: that.loginForm.username,
  132. });
  133. that.$router.push(this.redirectUrl); // 跳转到首页
  134. }
  135. });
  136. });
  137. },
  138. updateRemember(v) {
  139. Cookies.set("rememberMe", v);
  140. },
  141. getRememberInfo() {
  142. const username = Cookies.get("username");
  143. const password = Cookies.get("password");
  144. const rememberMe = Boolean(Cookies.get("rememberMe"));
  145. if (rememberMe) {
  146. this.loginForm.username =
  147. username === undefined ? this.loginForm.username : username;
  148. if (password) {
  149. this.loginForm.password = Base64.decode(password);
  150. }
  151. this.loginForm.rememberMe =
  152. rememberMe === undefined ? false : rememberMe;
  153. }
  154. },
  155. },
  156. created() {
  157. this.getRememberInfo();
  158. },
  159. };
  160. </script>
  161. <style lang="less" scoped>
  162. .login-panel {
  163. position: absolute;
  164. width: 470px;
  165. height: 636px;
  166. background: rgba(0, 0, 0, 0.4);
  167. right: 10%;
  168. top: 50%;
  169. transform: translateY(-50%);
  170. display: flex;
  171. flex-direction: column;
  172. align-items: center;
  173. padding-top: 90px;
  174. }
  175. .login-title {
  176. display: flex;
  177. align-items: center;
  178. flex-direction: column;
  179. font-size: 30px;
  180. margin-bottom: 40px;
  181. p {
  182. display: flex;
  183. align-items: center;
  184. .login-img {
  185. width: 56px;
  186. height: 56px;
  187. margin-right: 5px;
  188. }
  189. }
  190. }
  191. .login-btn ::v-deep {
  192. background: url("~@/assets/imgs/login-btn.png") no-repeat;
  193. background-size: cover;
  194. width: 385px;
  195. height: 56px;
  196. border-radius: 5px;
  197. border-width: 0;
  198. color: #fff;
  199. font-size: 16px;
  200. margin-top: 66px;
  201. cursor: pointer;
  202. &:hover,
  203. &:focus {
  204. color: #fff;
  205. background-color: transparent;
  206. border-width: 0;
  207. }
  208. }
  209. .login-form ::v-deep {
  210. .el-form-item {
  211. width: 383px;
  212. margin-bottom: 22px;
  213. .el-form-item__content {
  214. .el-input {
  215. .el-input__inner {
  216. height: 50px;
  217. line-height: 50px;
  218. font-family: Microsoft YaHei;
  219. font-weight: 400;
  220. color: #fff;
  221. background: #1b1a1f;
  222. border-width: 0;
  223. font-size: 16px;
  224. padding-left: 35px;
  225. }
  226. .el-input__prefix {
  227. top: 50%;
  228. transform: translateY(-28%);
  229. }
  230. }
  231. }
  232. }
  233. }
  234. /**改变input里的字体颜色*/
  235. /deep/ input::-webkit-input-placeholder {
  236. color: #777777;
  237. font-size: 16px;
  238. }
  239. ::v-deep .el-input__inner:-webkit-autofill {
  240. transition: background-color 50000s ease-in-out 0s;
  241. -webkit-text-fill-color: #fff; //记住密码的颜色
  242. caret-color: #fff; //改变输入框光标颜色,同时又不改变输入框里面的内容的颜色
  243. }
  244. ::v-deep.hintText {
  245. display: flex;
  246. width: 383px;
  247. padding-top: 5px;
  248. padding-left: 18px;
  249. .el-checkbox {
  250. .el-checkbox__inner {
  251. background: #fff;
  252. border-color: #fff;
  253. }
  254. .el-checkbox__label {
  255. font-size: 14px;
  256. color: #777;
  257. }
  258. }
  259. }
  260. </style>