App.vue 9.1 KB

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