index.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. <template>
  2. <div class="login-container">
  3. <el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on" label-position="left">
  4. <div class="title-container flex-wrap">
  5. <el-avatar :size="40" shape="square" :src="imgSrc" @error="errorHandler">
  6. <img src="@/assets/logo/error.png">
  7. </el-avatar>
  8. <!-- <el-divider direction="vertical"></el-divider> -->
  9. <div class="content-box">
  10. <div class="title">{{ pageTitle }}</div>
  11. </div>
  12. </div>
  13. <el-form-item prop="username">
  14. <!-- <span class="svg-container">
  15. <svg-icon style="color:#606266;" icon-class="user" />
  16. </span> -->
  17. <el-input ref="username" v-model="loginForm.username" placeholder="用户名" name="username" type="text" tabindex="1" auto-complete="on" />
  18. </el-form-item>
  19. <el-form-item prop="password">
  20. <!-- <span class="svg-container">
  21. <svg-icon style="color:#606266;" icon-class="password" />
  22. </span> -->
  23. <el-input ref="password" v-model="loginForm.password" show-password placeholder="密码" name="password" tabindex="2" auto-complete="on" />
  24. </el-form-item>
  25. <div v-if="isCode" class="flex-wrap">
  26. <el-form-item class="flex1" prop="identify">
  27. <el-input ref="identify" v-model="loginForm.identify" placeholder="请输入验证码" name="identify" tabindex="3" auto-complete="on" @keyup.enter.native="handleLogin" />
  28. </el-form-item>
  29. <img style="width: 116px;height: 40px;margin-left: 18px;cursor: pointer;" :src="baseImg" alt="验证码" @click="changeCode">
  30. </div>
  31. <el-button :loading="loading" type="primary" style="width: 100%;margin-top: 18px;height: 42px;border-radius: 2px;" @click.native.prevent="handleLogin">登录</el-button>
  32. </el-form>
  33. </div>
  34. </template>
  35. <script>
  36. import { isValue } from '@/utils/validate'
  37. import { getVCode, getToken } from '@/api/login'
  38. import { setCodeToken, getCodeToken, setToken } from '@/utils/auth'
  39. import MD5 from 'blueimp-md5'
  40. import { mapGetters } from 'vuex'
  41. import '@/config/staticConfig' // 按钮权限 全局自定义指令v-is
  42. export default {
  43. name: 'Login',
  44. data () {
  45. return {
  46. text: `<a onclick='("XSS")'>链接</a>`,
  47. flag: false,
  48. PwdMessage: null,
  49. loginForm: {
  50. username: '',
  51. password: '',
  52. identify: '',
  53. },
  54. loginRules: {
  55. username: [
  56. { required: true, trigger: 'blur', message: '请输入用户名' },
  57. ],
  58. password: [{ required: true, trigger: 'blur', message: '请输入密码' }],
  59. identify: [
  60. { required: true, trigger: 'blur', message: '请输入验证码' },
  61. ],
  62. },
  63. loading: false,
  64. passwordType: 'password',
  65. redirect: undefined,
  66. isCode: false,
  67. pageTitle: '',
  68. imgSrc: '',
  69. baseImg: '',
  70. appId: '',
  71. userCount: 0,
  72. timer: null,
  73. }
  74. },
  75. watch: {
  76. $route: {
  77. handler: function (route) {
  78. this.redirect = route.query && route.query.redirect
  79. },
  80. immediate: true,
  81. }
  82. },
  83. computed: {
  84. ...mapGetters(['userLoginList', 'userLoginState']),
  85. timeMinunt () {
  86. const userState = this.userLoginState
  87. const { time, state } = userState
  88. return { state, time: Math.ceil(time / 60) }
  89. }
  90. },
  91. async created () {
  92. try {
  93. const { code, returnData, message } = await getToken({
  94. 'appid': PLATFROM_CONFIG.appId,
  95. 'appSecret': PLATFROM_CONFIG.appKeyString
  96. })
  97. if (code == 0 && isValue(returnData)) {
  98. const { app_log, app_name, app_token, active_duration, app_code_rule } = returnData
  99. this.imgSrc = window.location.origin + app_log
  100. this.pageTitle = app_name
  101. this.isCode = app_code_rule
  102. setCodeToken(app_token)
  103. setToken('active_duration', active_duration)
  104. sessionStorage.setItem('appLog', app_log)
  105. sessionStorage.setItem('appName', app_name)
  106. if (app_code_rule) {
  107. this.getCheckCode()
  108. }
  109. } else {
  110. this.$message.error(message)
  111. }
  112. } catch (error) {
  113. this.$message.error(error.message)
  114. }
  115. },
  116. beforeDestroy () {
  117. clearInterval(this.timer)
  118. this.timer = null
  119. this.loading = false
  120. },
  121. methods: {
  122. showPwd () {
  123. if (this.passwordType === 'password') {
  124. this.passwordType = ''
  125. } else {
  126. this.passwordType = 'password'
  127. }
  128. this.$nextTick(() => {
  129. this.$refs.password.focus()
  130. })
  131. },
  132. // 登录
  133. handleLogin () {
  134. this.$refs.loginForm.validate((valid) => {
  135. if (valid) {
  136. this.loading = true
  137. const params = {
  138. app_token: getCodeToken(),
  139. username: this.loginForm.username.replace(/\s+/g, ''),
  140. password: MD5(this.loginForm.password.replace(/\s+/g, '')),
  141. // password: this.loginForm.password.replace(/\s+/g, ""),
  142. verifyCode: this.loginForm.identify.replace(/\s+/g, ''),
  143. }
  144. this.$store
  145. .dispatch('user/login', params)
  146. .then(async () => {
  147. clearInterval(this.timer)
  148. this.timer = null
  149. this.$store.dispatch('app/toggleOutcheck', false)
  150. sessionStorage.setItem('userName', params.username)
  151. this.$router.push({ path: this.redirect || '/' })
  152. this.loading = false
  153. })
  154. .catch(() => {
  155. this.getCheckCode()
  156. this.loading = false
  157. })
  158. } else {
  159. return false
  160. }
  161. })
  162. },
  163. // 限制登录
  164. restrictLogin () {
  165. const loginParams = {
  166. username: this.loginForm.username.replace(/\s+/g, ''),
  167. }
  168. const loginList = this.userLoginList
  169. loginList.push(loginParams)
  170. this.$store.dispatch('user/setLoginList', loginList)
  171. const mapData = loginList.filter(item => item.username === this.loginForm.username)
  172. return mapData.length
  173. },
  174. // 登录计时器
  175. timePiker (userState) {
  176. this.timer = setInterval(() => {
  177. const newTime = userState.time--
  178. const newState = { state: true, time: newTime }
  179. this.$store.dispatch('user/setLoginState', newState)
  180. if (userState.time == 0) {
  181. clearInterval(this.timer)
  182. this.timer = null
  183. this.loading = false
  184. this.$store.dispatch('user/setLoginList', [])
  185. this.$store.dispatch('user/setLoginState', { state: false, time: 60 * PLATFROM_CONFIG.maxTime })
  186. }
  187. }, 1000)
  188. },
  189. // 登录状态
  190. getLoginState () {
  191. const userState = this.userLoginState
  192. const newTime = userState.time
  193. if (newTime == 0) {
  194. return false
  195. } else {
  196. return true
  197. }
  198. },
  199. // 获取动态验证码
  200. async getCheckCode () {
  201. const { code, message, returnData } = await getVCode({
  202. app_token: getCodeToken()
  203. })
  204. if (code == 0 && isValue(returnData)) {
  205. const { verifyCode } = returnData
  206. this.baseImg = 'data:image/gif;base64,' + verifyCode
  207. } else {
  208. this.$message.error(message)
  209. }
  210. },
  211. // 验证码重新获取
  212. changeCode () {
  213. this.getCheckCode()
  214. },
  215. errorHandler () {
  216. return true
  217. }
  218. },
  219. }
  220. </script>
  221. <style lang="scss" scoped>
  222. $bg: #2d3a4b;
  223. $dark_gray: #889aa4;
  224. $light_gray: #eee;
  225. .stateError {
  226. font-size: 12px;
  227. color: #f00;
  228. text-align: center;
  229. }
  230. .login-container {
  231. min-height: 100%;
  232. width: 100%;
  233. background-color: $bg;
  234. overflow: hidden;
  235. background-image: url("../../assets/loginpage/bg.jpg");
  236. background-repeat: no-repeat;
  237. background-size: cover;
  238. display: flex;
  239. justify-content: center;
  240. align-items: center;
  241. ::v-deep .login-form {
  242. position: relative;
  243. width: 416px;
  244. height: 424px;
  245. background: #ffffff;
  246. box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.5);
  247. border-radius: 8px;
  248. padding: 40px 48px 27px 48px;
  249. .el-form-item__content {
  250. height: 40px;
  251. background: #fff;
  252. border-radius: 6px;
  253. .el-input {
  254. height: 40px;
  255. border-radius: 2px;
  256. input {
  257. height: 40px;
  258. border: 1px solid #d2d6df;
  259. color: #303133;
  260. }
  261. }
  262. }
  263. }
  264. .forgetPwd {
  265. display: flex;
  266. justify-content: flex-end;
  267. margin-top: 22px;
  268. font-size: 14px;
  269. font-family: Microsoft YaHei;
  270. font-weight: 400;
  271. text-decoration: underline;
  272. color: #2f3480;
  273. .fpwd {
  274. cursor: pointer;
  275. }
  276. }
  277. .tips {
  278. font-size: 14px;
  279. color: #fff;
  280. margin-bottom: 10px;
  281. span {
  282. &:first-of-type {
  283. margin-right: 16px;
  284. }
  285. }
  286. }
  287. .svg-container {
  288. vertical-align: middle;
  289. width: 55px;
  290. display: inline-block;
  291. text-align: center;
  292. }
  293. .title-container {
  294. position: relative;
  295. margin-bottom: 39px;
  296. line-height: 32px;
  297. .title {
  298. // height: 16px;
  299. font-size: 16px;
  300. font-family: Microsoft YaHei;
  301. font-weight: bold;
  302. color: #303133;
  303. margin-left: 15px;
  304. }
  305. .title-en {
  306. position: absolute;
  307. top: 23px;
  308. left: 0;
  309. font-size: 12px;
  310. }
  311. .content-box {
  312. position: relative;
  313. }
  314. .avitor {
  315. width: 36px;
  316. height: 36px;
  317. margin-right: 20px;
  318. background: url("../../assets/logo/pic_logo.png") no-repeat;
  319. // border-radius: 50%;
  320. position: relative;
  321. top: 7px;
  322. }
  323. .el-divider {
  324. height: 20px;
  325. background: #101116;
  326. margin: 0 16px;
  327. position: relative;
  328. top: 5px;
  329. }
  330. }
  331. .show-pwd {
  332. position: absolute;
  333. right: 10px;
  334. top: 7px;
  335. font-size: 16px;
  336. color: $dark_gray;
  337. cursor: pointer;
  338. user-select: none;
  339. }
  340. }
  341. </style>