App.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. // let list1=''
  18. // let list2=""
  19. // const key=".",zhkey='xiaod',mmkey='223322'
  20. // for(let i=0;i<500;i++){
  21. // list1+=`${i===0?'':key}${zhkey}${i+1}`
  22. // list2+=`${i===0?'':key}${mmkey}`
  23. // }
  24. // console.log(list1);
  25. // console.log(list2);
  26. if (JudgeEnvironment() === "isDingDing") {
  27. await this.testing();
  28. } else {
  29. await this.getMenu();
  30. }
  31. },
  32. methods: {
  33. async testing() {
  34. await getCode(async (code) => {
  35. this.code = code;
  36. if (this.code != null && this.code != "") {
  37. await this.setcode(this.code);
  38. } else {
  39. await this.logout();
  40. }
  41. });
  42. },
  43. async setcode(code) {
  44. let model = { code: code };
  45. this.$store
  46. .dispatch("user/dingUserInfor", model)
  47. .then(async (res) => {
  48. if (res === "success") {
  49. await this.getMenu();
  50. } else {
  51. await this.logout();
  52. }
  53. })
  54. .catch(async (err) => {
  55. await this.logout();
  56. });
  57. },
  58. async getMenu() {
  59. this.$store
  60. .dispatch("user/getMenuList", this)
  61. .then(async (res) => {
  62. if (res === "noToken") {
  63. await this.logout();
  64. } else if (res === "success") {
  65. if (
  66. this.$route.path === "/loadingPage" ||
  67. this.$route.path === "/" ||
  68. this.$route.path === "/login"
  69. ) {
  70. window.vm.$router.replace("/welcome");
  71. }
  72. } else {
  73. await this.logout();
  74. }
  75. })
  76. .catch(async (err) => {
  77. await this.logout();
  78. });
  79. },
  80. async logout() {
  81. if (this.$route.path !== "/login") {
  82. await this.$store.dispatch("user/logout");
  83. console.log(this.$route.fullPath);
  84. this.$router.push(`/login`);
  85. }
  86. },
  87. },
  88. };
  89. </script>
  90. <style lang="scss">
  91. @import "./assets/css/index.scss";
  92. </style>