12035f7058379ad8540ac5c44fe407242ff9c737.svn-base 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. <template>
  2. <div class="login-container">
  3. <div class="new-login">
  4. <div class="new-login-l">
  5. <img src="@/assets/images/logo.png" alt="">
  6. </div>
  7. <div class="new-login-r">
  8. <div class="title">用户登录</div>
  9. <el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on" label-position="left">
  10. <el-form-item prop="username">
  11. <span class="svg-container">
  12. <svg-icon icon-class="user" />
  13. </span>
  14. <el-input ref="username" v-model="loginForm.username" placeholder="用户名" name="username" type="text" tabindex="1" auto-complete="on" />
  15. </el-form-item>
  16. <el-form-item prop="password" class="password">
  17. <span class="svg-container">
  18. <svg-icon icon-class="password" />
  19. </span>
  20. <el-input :key="passwordType" ref="password" v-model="loginForm.password" :type="passwordType" placeholder="密码" name="password" tabindex="2" auto-complete="on" @keyup.enter.native="handleLogin" />
  21. <span class="show-pwd" @click="showPwd">
  22. <svg-icon :icon-class="passwordType === 'password' ? 'eye' : 'eye-open'" />
  23. </span>
  24. </el-form-item>
  25. <el-form-item prop="password" class="rememberPassword">
  26. <input id="remember-password-checkbox" v-model="rememberPassword" type="checkbox" value="remember-me" @click="doRememberPassword($event)">
  27. <span for="remember-password-checkbox">
  28. 记住密码
  29. </span>
  30. </input>
  31. </el-form-item>
  32. </el-form>
  33. <el-button type="text" :loading="loading" class="btn" @click.native.prevent="handleLogin">登录</el-button>
  34. </div>
  35. </div>
  36. </div>
  37. </template>
  38. <script>
  39. import { validUsername } from '@/utils/validate'
  40. import Cookies from 'js-cookie'
  41. import { getToken } from '@/utils/auth'
  42. export default {
  43. name: 'Login',
  44. data() {
  45. const validateUsername = (rule, value, callback) => {
  46. if (!validUsername(value)) {
  47. callback(new Error('请输入正确的用户名'))
  48. } else {
  49. callback()
  50. }
  51. }
  52. const validatePassword = (rule, value, callback) => {
  53. if (value.length < 6) {
  54. callback(new Error('密码不能少于6个字符'))
  55. } else {
  56. callback()
  57. }
  58. }
  59. return {
  60. loginForm: {
  61. username: '',
  62. password: ''
  63. },
  64. loginRules: {
  65. username: [
  66. { required: true, trigger: 'blur', validator: validateUsername }
  67. ],
  68. password: [
  69. { required: true, trigger: 'blur', validator: validatePassword }
  70. ]
  71. },
  72. loading: false,
  73. passwordType: 'password',
  74. redirect: undefined,
  75. rememberPassword: ''
  76. }
  77. },
  78. watch: {
  79. $route: {
  80. handler: function(route) {
  81. this.redirect = route.query && route.query.redirect
  82. },
  83. immediate: true
  84. }
  85. },
  86. created() {
  87. var that = this
  88. document.onkeydown = function(e) {
  89. e = window.event || e
  90. // eslint-disable-next-line eqeqeq
  91. if (that.$route.path == '/login' && (e.code == 'Enter' || e.code == 'Num Enter')) { // 验证在登录界面和按得键是回车键enter
  92. that.handleLogin('ruleForm2') // 登录函数 (handleSubmit2('ruleForm2')-登录按钮的点击事件)
  93. }
  94. }
  95. },
  96. mounted: function() {
  97. // 读取cookie中的账号信息,如果有accountInfo的话,则说明该用户之前勾选了记住密码的功能,则需要自动填上账号密码
  98. this.loadAccountInfo()
  99. },
  100. methods: {
  101. showPwd() {
  102. if (this.passwordType === 'password') {
  103. this.passwordType = ''
  104. } else {
  105. this.passwordType = 'password'
  106. }
  107. this.$nextTick(() => {
  108. this.$refs.password.focus()
  109. })
  110. },
  111. handleLogin() {
  112. var rememberStatus = this.rememberPassword
  113. var accountInfo = this.loginForm.username + '&' + this.loginForm.password
  114. this.$refs.loginForm.validate(valid => {
  115. if (valid) {
  116. this.loading = true
  117. this.$store
  118. .dispatch('user/login', this.loginForm).then(() => {
  119. if (rememberStatus) {
  120. console.log('勾选了记住密码,现在开始写入cookie')
  121. Cookies.set('accountInfo', accountInfo, 1440 * 3)
  122. } else {
  123. console.log('没有勾选记住密码,现在开始删除账号cookie')
  124. Cookies.remove('accountInfo')
  125. }
  126. // 若为本地环境 则手写cookie
  127. if (window.location.href.indexOf('localhost') != -1) {
  128. Cookies.set('token', getToken(), 1440)
  129. }
  130. this.$router.push({ path: this.redirect || '/' })
  131. this.loading = false
  132. })
  133. .catch(() => {
  134. this.loading = false
  135. })
  136. } else {
  137. console.log('error submit!!')
  138. return false
  139. }
  140. })
  141. },
  142. doRememberPassword() {
  143. const rememberStatus = this.rememberPassword
  144. this.rememberPassword = !rememberStatus
  145. },
  146. loadAccountInfo: function() {
  147. const _this = this
  148. // zhaopeng&A15hOsu8YeGnCsjb
  149. const accountInfo = Cookies.get('accountInfo')
  150. // 如果cookie里没有账号信息
  151. if (Boolean(accountInfo) == false) {
  152. console.log('cookie中没有检测到账号信息!')
  153. return false
  154. } else {
  155. // 如果cookie里有账号信息
  156. console.log('cookie中检测到账号信息!现在开始预填写!')
  157. let userName = ''
  158. let passWord = ''
  159. const index = accountInfo.indexOf('&')
  160. userName = accountInfo.substring(0, index)
  161. passWord = accountInfo.substring(index + 1)
  162. // this.loginForm.username + '&' + this.loginForm.password
  163. _this.loginForm.username = userName
  164. _this.loginForm.password = passWord
  165. _this.rememberPassword = true
  166. }
  167. }
  168. }
  169. }
  170. </script>
  171. <style lang="scss">
  172. /* 修复input 背景不协调 和光标变色 */
  173. /* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
  174. // $bg: #283443;
  175. // $light_gray: #fff;
  176. // $cursor: #fff;
  177. // 更改
  178. // $bg: #ccc;
  179. // $light_gray: #ccc;
  180. // $cursor: #000;
  181. // @supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
  182. // .login-container .el-input input {
  183. // color: $cursor;
  184. // }
  185. // }
  186. // .login-container {
  187. // min-height: 232px;
  188. // .el-input {
  189. // display: inline-block;
  190. // height: 38px;
  191. // width: 80%;
  192. // input {
  193. // background: #fff;
  194. // border: 0px;
  195. // -webkit-appearance: none;
  196. // border-radius: 0px;
  197. // padding: 5px 5px 5px 15px;
  198. // color: #000;
  199. // height: 16.7%;
  200. // caret-color: $cursor;
  201. // &:-webkit-autofill {
  202. // box-shadow: 0 0 0px 1000px $bg inset !important;
  203. // -webkit-text-fill-color: $cursor !important;
  204. // }
  205. // }
  206. // }
  207. // .el-form-item {
  208. // border: 1px solid rgba(255, 255, 255, 0.1);
  209. // background: #fff;
  210. // border-radius: 5px;
  211. // color: #999;
  212. // width: 73%;
  213. // margin: 10px auto;
  214. // .el-form-item__content {
  215. // line-height: 16%;
  216. // border-bottom: 1px solid #e7e7e7;
  217. // }
  218. // }
  219. // .rememberPassword{
  220. // .el-form-item__content {
  221. // line-height:16%;
  222. // border: none;
  223. // span{padding-left: 5px;}
  224. // }
  225. // }
  226. // .password{
  227. // margin-top: 20px;margin-bottom: 15px;
  228. // }
  229. // .btn{
  230. // position: relative;
  231. // width: 520px;
  232. // max-width: 100%;
  233. // overflow: hidden;
  234. // }
  235. // .btn span{width:72%;background:#01996a;border: #01996a;border-radius: 5px;line-height: 40px; text-align: center;color:#fff; margin: 0 auto;display: block;}
  236. // }
  237. </style>
  238. /* <style>
  239. .login-container .el-input input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  240. -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  241. box-shadow: 0 0 0px 1000px #fff inset !important;
  242. -webkit-text-fill-color: #000 !important;
  243. }
  244. </style> */
  245. // <style lang="scss" scoped>
  246. // $bg: #2d3a4b;
  247. // $dark_gray: #999;
  248. // $light_gray: #000;
  249. // .login-container {
  250. // min-height: 100%;
  251. // width: 100%;
  252. // height: 100%;
  253. // position: relative;
  254. // background: url("../../assets/images/nlogin-bg.png") no-repeat;
  255. // background-size:100%;
  256. // overflow: hidden;
  257. // .login {
  258. // border-radius: 5%;
  259. // padding: 30px;
  260. // background: rgba(0,0,0,0.4);
  261. // width: 380px;
  262. // height: 340px;
  263. // position: relative;
  264. // top: 50%;
  265. // left: 50%;
  266. // margin-left: -190px;
  267. // margin-top: -270px;
  268. // box-shadow:0px 0px 10px #fff;
  269. // .login-form {
  270. // margin-top: 60px;
  271. // position: relative;
  272. // width: 520px;
  273. // max-width: 100%;
  274. // overflow: hidden;
  275. // }
  276. // .tips {
  277. // font-size: 14px;
  278. // color: #fff;
  279. // margin-bottom: 10px;
  280. // span {
  281. // &:first-of-type {
  282. // margin-right: 16px;
  283. // }
  284. // }
  285. // }
  286. // .svg-container {
  287. // padding: 6px 5px 6px 15px;
  288. // color: $dark_gray;
  289. // vertical-align: middle;
  290. // width: 30px;
  291. // display: inline-block;
  292. // }
  293. // .title {
  294. // font-size: 26px;
  295. // color: $light_gray;
  296. // margin: 0px auto 0 auto;
  297. // text-align: center;
  298. // font-weight: bold;
  299. // }
  300. // b {
  301. // text-align: center;
  302. // font: 14px/2 "";
  303. // }
  304. // .show-pwd {
  305. // position: absolute;
  306. // right: 10px;
  307. // top: 7px;
  308. // font-size: 16px;
  309. // color: $dark_gray;
  310. // cursor: pointer;
  311. // user-select: none;
  312. // }
  313. // .kpt{text-align: center;color: #fff;display: inline-block;width: 100%;font:12px/18px '';}
  314. // }
  315. // }
  316. // </style>
  317. // <style lang="scss" scoped>
  318. // .login-container {
  319. // width: 100vw;
  320. // height: 100vh;
  321. // display: flex;
  322. // justify-content: center;
  323. // align-items: center;
  324. // .new-login{
  325. // width: 57%;
  326. // height: 43%;
  327. // display: flex;
  328. // .new-login-l{
  329. // flex: 1 1;
  330. // width: 50%;
  331. // background: url("../../assets/images/nlogin-bg2.png") no-repeat;
  332. // position: relative;
  333. // .new-login-l-t{
  334. // width: 34%;
  335. // height: 13%;
  336. // position: absolute;
  337. // top: 36%;
  338. // left: 32%;
  339. // right: 0;
  340. // bottom: 0;
  341. // }
  342. // .new-login-l-b{
  343. // position: absolute;
  344. // // 138,263
  345. // width: 40%;
  346. // // height: 5%;
  347. // top: 56%;
  348. // left: 30%;
  349. // // right: 0;
  350. // // bottom: 0;
  351. // }
  352. // }
  353. // .new-login-r{
  354. // flex: 1 1;
  355. // width: 50%;
  356. // background: url("../../assets/images/nlogin-bg3.png") no-repeat;
  357. // position: relative;
  358. // .title{
  359. // text-align: center;
  360. // font-size: 26px;
  361. // font-weight: 700;
  362. // color: #01996a;
  363. // padding-top: 10%;
  364. // padding-bottom: 3%;
  365. // }
  366. // .btn {position: absolute;bottom: 10%;}
  367. // }
  368. // }
  369. // }
  370. // </style>
  371. <style lang="scss" scoped>
  372. $bg: #2d3a4b;
  373. $dark_gray: #999;
  374. $light_gray: #000;
  375. $bg: #ccc;
  376. $light_gray: #ccc;
  377. $cursor: #000;
  378. .login-container{
  379. position: relative;height: 100%;width: 100%;background: url("../../assets/images/nlogin-bg.png") no-repeat;
  380. .new-login{
  381. width: 50%;height: 42%;position: absolute;left: 0;right: 0;bottom: 0;top: 0;margin: auto;
  382. .new-login-l{
  383. background: red;float:left;height:100%;width:50%;background: url("../../assets/images/nlogin-bg2.png") no-repeat;position: relative;
  384. img{position: absolute;left: 0;right: 0;bottom: 0;top: 0;margin: auto;width: 50%;height:23%;}
  385. }
  386. .new-login-r{
  387. background: #fff;float:left;height:100%;width:50%;position: relative;
  388. .title{margin-top: 10%;font-size: 20px;font-weight: 600;color: #019969;text-align: center;}
  389. .login-form{
  390. position: relative;width: 520px;max-width: 100%;overflow: hidden;height: 48%;
  391. .svg-container{padding: 6px 5px 6px 15px; color: $dark_gray; vertical-align: middle; width: 30px; display: inline-block;}
  392. .el-input {
  393. display: inline-block; width: 80%;
  394. }
  395. }
  396. .el-form-item {
  397. border: none; background: #fff; border-radius: 5px; color: #999;width: 73%; margin: 10px auto;height: 30%;
  398. /deep/.el-form-item__content {
  399. line-height: 16%; border-bottom: 1px solid #e7e7e7;
  400. }
  401. .el-form-item__content .el-input{
  402. /deep/.el-input__inner{border: none !important;}
  403. }
  404. }
  405. .rememberPassword{
  406. /deep/.el-form-item__content { line-height:16%; border: none;padding-bottom: 10px; span{padding-left: 5px;} }
  407. }
  408. .password{margin-top: 10px;margin-bottom: 15px;}
  409. .btn{
  410. position: absolute; overflow: hidden; width: 75%;left: 0;right: 0;bottom: 10%;margin: 0 auto;
  411. /deep/span{background:#01996a;border: #01996a;border-radius: 5px;line-height: 40px; text-align: center;color:#fff; display: block;}
  412. }
  413. }
  414. }
  415. }
  416. </style>