index.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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="36" :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 @click="changeCode" style="width: 116px;height: 40px;margin-left: 18px;cursor: pointer;" :src="baseImg" alt="验证码">
  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. export default {
  41. name: "Login",
  42. data () {
  43. return {
  44. text: `<a onclick='("XSS")'>链接</a>`,
  45. flag: false,
  46. PwdMessage: null,
  47. loginForm: {
  48. username: "",
  49. password: "",
  50. identify: "",
  51. },
  52. loginRules: {
  53. username: [
  54. { required: true, trigger: "blur", message: "请输入用户名" },
  55. ],
  56. password: [{ required: true, trigger: "blur", message: "请输入密码" }],
  57. identify: [
  58. { required: true, trigger: "blur", message: "请输入验证码" },
  59. ],
  60. },
  61. loading: false,
  62. passwordType: "password",
  63. redirect: undefined,
  64. isCode: false,
  65. pageTitle: '',
  66. imgSrc: '',
  67. baseImg: '',
  68. appId: ''
  69. };
  70. },
  71. watch: {
  72. $route: {
  73. handler: function (route) {
  74. this.redirect = route.query && route.query.redirect;
  75. },
  76. immediate: true,
  77. }
  78. },
  79. async created () {
  80. try {
  81. const { code, returnData, message } = await getToken({
  82. 'appid': PLATFROM_CONFIG.appId,
  83. 'appSecret': PLATFROM_CONFIG.appKeyString
  84. })
  85. if (code == 0 && isValue(returnData)) {
  86. const { app_log, app_name, app_token, active_duration, app_code_rule } = returnData;
  87. this.imgSrc = window.location.origin + app_log
  88. this.pageTitle = app_name
  89. this.isCode = app_code_rule
  90. setCodeToken(app_token);
  91. setToken('active_duration', active_duration);
  92. sessionStorage.setItem('appLog', app_log)
  93. sessionStorage.setItem('appName', app_name)
  94. if (app_code_rule) {
  95. this.getCheckCode()
  96. }
  97. } else {
  98. this.$message.error(message);
  99. }
  100. } catch (error) {
  101. this.$message.error(error.message);
  102. }
  103. },
  104. methods: {
  105. showPwd () {
  106. if (this.passwordType === "password") {
  107. this.passwordType = "";
  108. } else {
  109. this.passwordType = "password";
  110. }
  111. this.$nextTick(() => {
  112. this.$refs.password.focus();
  113. });
  114. },
  115. // 登录
  116. handleLogin () {
  117. this.$refs.loginForm.validate((valid) => {
  118. if (valid) {
  119. this.loading = true;
  120. const params = {
  121. app_token: getCodeToken(),
  122. username: this.loginForm.username.replace(/\s+/g, ""),
  123. password: MD5(this.loginForm.password.replace(/\s+/g, "")),
  124. // password: this.loginForm.password.replace(/\s+/g, ""),
  125. verifyCode: this.loginForm.identify.replace(/\s+/g, ""),
  126. };
  127. this.$store
  128. .dispatch("user/login", params)
  129. .then(async () => {
  130. this.$store.dispatch("app/toggleOutcheck", false);
  131. sessionStorage.setItem("userName", params.username);
  132. this.$router.push({ path: this.redirect || "/" });
  133. this.loading = false;
  134. })
  135. .catch(() => {
  136. this.getCheckCode();
  137. this.loading = false;
  138. });
  139. } else {
  140. return false;
  141. }
  142. });
  143. },
  144. //获取动态验证码
  145. async getCheckCode () {
  146. const { code, message, returnData } = await getVCode({
  147. app_token: getCodeToken()
  148. });
  149. if (code == 0 && isValue(returnData)) {
  150. const { verifyCode } = returnData;
  151. this.baseImg = "data:image/gif;base64," + verifyCode;
  152. } else {
  153. this.$message.error(message);
  154. }
  155. },
  156. //验证码重新获取
  157. changeCode () {
  158. this.getCheckCode();
  159. },
  160. errorHandler () {
  161. return true
  162. }
  163. },
  164. };
  165. </script>
  166. <style lang="scss" scoped>
  167. $bg: #2d3a4b;
  168. $dark_gray: #889aa4;
  169. $light_gray: #eee;
  170. .login-container {
  171. min-height: 100%;
  172. width: 100%;
  173. background-color: $bg;
  174. overflow: hidden;
  175. background-image: url("../../assets/loginpage/bg.jpg");
  176. background-repeat: no-repeat;
  177. background-size: cover;
  178. display: flex;
  179. justify-content: center;
  180. align-items: center;
  181. ::v-deep .login-form {
  182. position: relative;
  183. width: 416px;
  184. height: 424px;
  185. background: #ffffff;
  186. box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.5);
  187. border-radius: 8px;
  188. padding: 40px 48px 27px 48px;
  189. .el-form-item__content {
  190. height: 40px;
  191. background: #fff;
  192. border-radius: 6px;
  193. .el-input {
  194. height: 40px;
  195. border-radius: 2px;
  196. input {
  197. height: 40px;
  198. border: 1px solid #d2d6df;
  199. color: #303133;
  200. }
  201. }
  202. }
  203. }
  204. .forgetPwd {
  205. display: flex;
  206. justify-content: flex-end;
  207. margin-top: 22px;
  208. font-size: 14px;
  209. font-family: Microsoft YaHei;
  210. font-weight: 400;
  211. text-decoration: underline;
  212. color: #2d67e3;
  213. .fpwd {
  214. cursor: pointer;
  215. }
  216. }
  217. .tips {
  218. font-size: 14px;
  219. color: #fff;
  220. margin-bottom: 10px;
  221. span {
  222. &:first-of-type {
  223. margin-right: 16px;
  224. }
  225. }
  226. }
  227. .svg-container {
  228. vertical-align: middle;
  229. width: 55px;
  230. display: inline-block;
  231. text-align: center;
  232. }
  233. .title-container {
  234. position: relative;
  235. margin-bottom: 39px;
  236. line-height: 32px;
  237. .title {
  238. // height: 16px;
  239. font-size: 16px;
  240. font-family: Microsoft YaHei;
  241. font-weight: bold;
  242. color: #303133;
  243. margin-left: 15px;
  244. }
  245. .title-en {
  246. position: absolute;
  247. top: 23px;
  248. left: 0;
  249. font-size: 12px;
  250. }
  251. .content-box {
  252. position: relative;
  253. }
  254. .avitor {
  255. width: 36px;
  256. height: 36px;
  257. margin-right: 20px;
  258. background: url("../../assets/logo/pic_logo.png") no-repeat;
  259. // border-radius: 50%;
  260. position: relative;
  261. top: 7px;
  262. }
  263. .el-divider {
  264. height: 20px;
  265. background: #101116;
  266. margin: 0 16px;
  267. position: relative;
  268. top: 5px;
  269. }
  270. }
  271. .show-pwd {
  272. position: absolute;
  273. right: 10px;
  274. top: 7px;
  275. font-size: 16px;
  276. color: $dark_gray;
  277. cursor: pointer;
  278. user-select: none;
  279. }
  280. }
  281. </style>