App.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <div id="app" v-cloak>
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. import { JudgeEnvironment } from "@/utils/validate";
  8. import { getCode } from "@/utils/dingding";
  9. export default {
  10. name: "App",
  11. data() {
  12. return {
  13. code: "",
  14. };
  15. },
  16. async created() {
  17. if (JudgeEnvironment() === "isDingDing") {
  18. await this.testing();
  19. } else {
  20. await this.getMenu();
  21. }
  22. },
  23. methods: {
  24. async testing() {
  25. await getCode(async (code) => {
  26. this.code = code;
  27. if (this.code != null && this.code != "") {
  28. await this.setcode(this.code);
  29. } else {
  30. await this.logout();
  31. }
  32. });
  33. },
  34. async setcode(code) {
  35. let model = { code: code };
  36. this.$store
  37. .dispatch("user/dingUserInfor", model)
  38. .then(async (res) => {
  39. if (res === "success") {
  40. await this.getMenu();
  41. } else {
  42. await this.logout();
  43. }
  44. })
  45. .catch(async (err) => {
  46. await this.logout();
  47. });
  48. },
  49. async getMenu() {
  50. this.$store
  51. .dispatch("user/getMenuList", this)
  52. .then(async (res) => {
  53. if (res === "noToken") {
  54. await this.logout();
  55. } else if (res === "success" || res === "success-dataV") {
  56. if (
  57. this.$route.path === "/loadingPage" ||
  58. this.$route.path === "/" ||
  59. this.$route.path === "/login"
  60. ) {
  61. if (res === "success-dataV") {
  62. window.vm.$router.replace("/bigScreen/datavScr");
  63. } else {
  64. window.vm.$router.replace("/welcome");
  65. }
  66. }
  67. } else {
  68. await this.logout();
  69. }
  70. })
  71. .catch(async (err) => {
  72. await this.logout();
  73. });
  74. },
  75. async logout() {
  76. if (this.$route.path !== "/login") {
  77. await this.$store.dispatch("user/logout");
  78. console.log(this.$route.fullPath);
  79. this.$router.push(`/login`);
  80. }
  81. },
  82. },
  83. };
  84. </script>
  85. <style lang="scss">
  86. @import "./assets/css/index.scss";
  87. //因为element-ui的confim组件并不是vue生成的不具有[data-v....],所以全局注入一个class
  88. // .lzx_BtnErr{
  89. // background: #f56c6c !important;
  90. // color: #fff !important;
  91. // }
  92. </style>