App.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-10-14 17:17:53
  4. * @LastEditTime: 2022-03-29 10:02:24
  5. * @LastEditors: your name
  6. * @Description: In User Settings Edit
  7. * @FilePath: \Foshan4A\src\App.vue
  8. -->
  9. <template>
  10. <div id="app">
  11. <!--全局休眠弹框-->
  12. <Dialog :flag="dialog" customClass="dormancyDialog" width="496px">
  13. <div class="dormancy">
  14. <div class="title">系统休眠,请输入密码解锁</div>
  15. <div class="content">
  16. <el-form @submit.native.prevent ref="form" :rules="rules" :model="form">
  17. <el-form-item prop="pwd">
  18. <el-input show-password placeholder="请输入密码" tabindex="1" @keyup.enter.native="onSubmit('form')" v-model="form.pwd"></el-input>
  19. </el-form-item>
  20. <div v-if="Number(errorNum) >= 2" class="flex-wrap">
  21. <el-form-item class="flex1" prop="identify">
  22. <el-input ref="identify" v-model.trim="form.identify" @keyup.enter.native="onSubmit('form')" placeholder="请输入验证码" name="identify" tabindex="1" />
  23. </el-form-item>
  24. <Identify @changeCode="changeCode" :identifyCode="form.CheckCode" :contentHeight="48" style="margin-left: 24px" />
  25. </div>
  26. <el-form-item>
  27. <el-button :loading="loading" style="line-height: normal" type="primary" class="button-public-shadow onSubmit" @click="onSubmit('form')">
  28. 确定
  29. </el-button>
  30. </el-form-item>
  31. </el-form>
  32. </div>
  33. </div>
  34. </Dialog>
  35. <!--路由出口-->
  36. <router-view />
  37. </div>
  38. </template>
  39. <script>
  40. import Dialog from "@/layout/components/Dialog/index.vue";
  41. import Identify from "./views/login/identify.vue";
  42. import { mapGetters } from "vuex";
  43. import { SsoLogin } from "@/api/apiHome";
  44. import { GetSSOCheckCode } from "@/api/login";
  45. import { getCodeToken } from "@/utils/auth";
  46. export default {
  47. name: "App",
  48. components: {
  49. Dialog,
  50. Identify,
  51. },
  52. data () {
  53. return {
  54. arr: [], //鼠标移动screenX值数组
  55. arrLen: [], //一段时间后上报的screenX值数组
  56. timer: null, //定时器
  57. time: null, //定时器时间 1=1S
  58. desc: null, //固定的定时器时间/和time保持一致
  59. form: {
  60. //表单数据
  61. pwd: "",
  62. identify: "",
  63. CheckCode: "",
  64. },
  65. rules: {
  66. //表单验证
  67. pwd: [{ required: true, message: "请输入密码", trigger: "blur" }],
  68. },
  69. flag: false,
  70. loading: false,
  71. LoginError: null
  72. };
  73. },
  74. computed: {
  75. ...mapGetters([
  76. "dialog",
  77. "token",
  78. "name",
  79. "systemSet",
  80. "roles",
  81. "errorNum"
  82. ]),
  83. },
  84. watch: {
  85. "$store.state.user.token": {
  86. handler (val) {
  87. if (val) {
  88. this.handleInit();
  89. } else {
  90. this.clearAll();
  91. }
  92. },
  93. deep: true,
  94. },
  95. $route: {
  96. handler () {
  97. this.$store.dispatch("auth/changeAuthMsg", []);
  98. this.$store.dispatch("auth/changeAuthArrs", []);
  99. this.$store.dispatch("auth/changeAuthList", []);
  100. this.$store.dispatch("auth/changeAuthId", null);
  101. },
  102. deep: true,
  103. },
  104. systemSet: {
  105. handler (val) {
  106. if (val) {
  107. const { LoginError } = typeof val === "string" ? JSON.parse(val) : val;
  108. this.LoginError = LoginError;
  109. }
  110. },
  111. deep: true,
  112. }
  113. },
  114. mounted () {
  115. const num = Number(this.errorNum);
  116. if (this.dialog && num >= 2) {
  117. // this.flag = true;
  118. this.getCheckCode();
  119. }
  120. this.beforeUnload();
  121. },
  122. beforeDestroy () {
  123. //结束定时器和释放timer
  124. this.clearAll();
  125. },
  126. methods: {
  127. // 初始化
  128. handleInit () {
  129. this.handleMove();
  130. if (!this.dialog) {
  131. this.handleTimer();
  132. }
  133. },
  134. /**
  135. * @description: 清除页面定时器和监听
  136. * @param {*}
  137. * @return {*}
  138. */
  139. clearAll () {
  140. clearInterval(this.timer);
  141. this.timer = null;
  142. this.time = null;
  143. this.desc = null;
  144. this.arr = [];
  145. this.arrLen = [];
  146. this.handleRmove();
  147. sessionStorage.setItem("token", "");
  148. },
  149. // 页面刷新 重新启用方法
  150. beforeUnload () {
  151. window.addEventListener("beforeunload", () => {
  152. if (this.token) {
  153. sessionStorage.setItem("token", this.token);
  154. }
  155. });
  156. let oldViews = sessionStorage.getItem("token") || "";
  157. if (oldViews) {
  158. this.handleInit();
  159. }
  160. },
  161. /**
  162. * @description: 定时器方法
  163. * @param {*}
  164. * @return {*}
  165. */
  166. handleTimer () {
  167. const obj =
  168. typeof this.systemSet === "string"
  169. ? JSON.parse(this.systemSet)
  170. : this.systemSet;
  171. const { LockMins } = obj;
  172. this.time = LockMins * 60;
  173. this.desc = LockMins * 60;
  174. this.timer = setInterval(() => {
  175. this.time--;
  176. if (this.time === 0) {
  177. const result = this.arrLen;
  178. const rut = this.arr;
  179. result.push(rut.length);
  180. if (rut.length == 0) {
  181. this.$store.dispatch("app/toggleDialog", true);
  182. this.getCheckCode();
  183. this.clearAll();
  184. } else {
  185. if (result.length >= 2) {
  186. if (result[result.length - 2] === result[result.length - 1]) {
  187. // 相同时 结束倒计时
  188. this.$store.dispatch("app/toggleDialog", true);
  189. this.getCheckCode();
  190. this.clearAll();
  191. } else {
  192. this.time = this.desc;
  193. }
  194. } else {
  195. this.time = this.desc;
  196. }
  197. }
  198. }
  199. }, 1000);
  200. },
  201. /**
  202. * @description: 监听鼠标移动方法/防抖
  203. * @param {*}
  204. * @return {*}
  205. */
  206. handleMove () {
  207. window.addEventListener(
  208. "mousemove",
  209. _.debounce(this.handleDebounce, 100)
  210. );
  211. },
  212. /**
  213. * @description: 移除鼠标移动监听
  214. * @param {*}
  215. * @return {*}
  216. */
  217. handleRmove () {
  218. window.removeEventListener("mousemove", () => {
  219. this.arr = [];
  220. });
  221. },
  222. /**
  223. * @description: 防抖方法
  224. * @param {*} e
  225. * @return {*}
  226. */
  227. handleDebounce (e) {
  228. const screenX = e.screenX;
  229. this.arr.push(screenX);
  230. },
  231. /**
  232. * @description: 提交
  233. * @param {*}
  234. * @return {*}
  235. */
  236. onSubmit (formName) {
  237. this.$refs[formName].validate((valid) => {
  238. if (valid) {
  239. this.ssoLogin();
  240. } else {
  241. return false;
  242. }
  243. });
  244. },
  245. //锁屏验证
  246. async ssoLogin () {
  247. try {
  248. this.loading = true;
  249. const obj = {
  250. LoginName: this.name,
  251. LoginPwd: this.form.pwd,
  252. token: getCodeToken(),
  253. userType: sessionStorage.getItem('UserType')
  254. };
  255. if (Number(this.errorNum) >= 2) {
  256. obj.CheckCode = this.form.identify;
  257. }
  258. const res = await SsoLogin(obj);
  259. if (res.code === 0) {
  260. this.$store.dispatch("app/toggleDialog", false);
  261. this.$store.dispatch("app/getErrorNum", 0);
  262. this.arr = [];
  263. this.arrLen = [];
  264. this.time = this.desc;
  265. this.form.pwd = "";
  266. this.form.identify = "";
  267. this.form.CheckCode = "";
  268. this.handleTimer();
  269. this.loading = false;
  270. } else {
  271. if (res.returnData) {
  272. const num = Number(res.returnData);
  273. this.form.identify = '';
  274. this.$store.dispatch("app/getErrorNum", num);
  275. if (num >= 2) {
  276. this.getCheckCode();
  277. }
  278. if (num >= Number(this.LoginError)) {
  279. await this.$store.dispatch("user/logout");
  280. this.$store.dispatch("app/getErrorNum", 0);
  281. this.clearAll();
  282. this.$store.dispatch("app/toggleDialog", false);
  283. this.$store.dispatch('tagsView/delAllViews');
  284. this.$router.push(`/login?redirect=${this.$route.fullPath}`);
  285. location.reload();
  286. }
  287. } else {
  288. await this.$store.dispatch("user/logout");
  289. this.$store.dispatch("app/getErrorNum", 0);
  290. this.clearAll();
  291. this.$store.dispatch("app/toggleDialog", false);
  292. this.$store.dispatch('tagsView/delAllViews');
  293. this.$router.push(`/login?redirect=${this.$route.fullPath}`);
  294. location.reload();
  295. }
  296. this.$message.error(res.message);
  297. this.loading = false;
  298. }
  299. } catch (error) {
  300. console.log(error);
  301. this.loading = false;
  302. }
  303. },
  304. //验证码重新获取
  305. changeCode () {
  306. this.getCheckCode();
  307. },
  308. //获取动态验证码
  309. async getCheckCode () {
  310. const res = await GetSSOCheckCode({
  311. token: getCodeToken()
  312. });
  313. if (res.code === 0) {
  314. this.form.CheckCode = res.returnData;
  315. } else {
  316. this.$message.error(res.message);
  317. }
  318. },
  319. },
  320. };
  321. </script>
  322. <style lang="scss" scoped>
  323. ::v-deep .dormancyDialog {
  324. .el-input__inner {
  325. height: 48px;
  326. line-height: 48px;
  327. background: #f5f7fa;
  328. border: 1px solid #ebeef5;
  329. border-radius: 6px;
  330. }
  331. .onSubmit {
  332. margin-top: 10px;
  333. }
  334. }
  335. </style>