App.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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 asyncRequest from "@/mock/service/stock/stockWarning";
  9. import { getCode } from "@/utils/dingding";
  10. export default {
  11. name: "App",
  12. data() {
  13. return {
  14. code: "",
  15. };
  16. },
  17. async created() {
  18. const res = await asyncRequest.list(this.parmValue);
  19. console.log(res);
  20. // if (res && res.code === 0 && res.data) {
  21. // this.tableData = res.data.list;
  22. // this.pageInfo.total = Number(res.data.count);
  23. // } else if (res && res.code >= 100 && res.code <= 104) {
  24. // await this.logout();
  25. // } else {
  26. // this.tableData = [];
  27. // this.pageInfo.total = 0;
  28. // }
  29. // axios
  30. // .post("/process/statistics", {})
  31. // .then((res) => {
  32. // console.log(res);
  33. // })
  34. // .catch((err) => {});
  35. if (JudgeEnvironment() === "isDingDing") {
  36. await this.testing();
  37. } else {
  38. await this.getMenu();
  39. }
  40. },
  41. methods: {
  42. async testing() {
  43. await getCode(async (code) => {
  44. alert(code+'aaaaaa')
  45. this.code = code;
  46. if (this.code != null && this.code != "") {
  47. await this.setcode(this.code);
  48. } else {
  49. await this.logout();
  50. }
  51. });
  52. },
  53. async setcode(code) {
  54. alert(code+'cccc')
  55. let model = { code: code };
  56. this.$store
  57. .dispatch("user/dingUserInfor", model)
  58. .then(async (res) => {
  59. if (res === "success") {
  60. await this.getMenu();
  61. } else {
  62. await this.logout();
  63. }
  64. })
  65. .catch(async (err) => {
  66. await this.logout();
  67. });
  68. },
  69. async getMenu() {
  70. this.$store
  71. .dispatch("user/getMenuList", this)
  72. .then(async (res) => {
  73. if (res === "noToken") {
  74. await this.logout();
  75. } else if (res === "success") {
  76. if (
  77. this.$route.path === "/loadingPage" ||
  78. this.$route.path === "/" ||
  79. this.$route.path === "/login"
  80. ) {
  81. window.vm.$router.replace("/welcome");
  82. }
  83. } else {
  84. await this.logout();
  85. }
  86. })
  87. .catch(async (err) => {
  88. await this.logout();
  89. });
  90. },
  91. async logout() {
  92. if (this.$route.path !== "/login") {
  93. await this.$store.dispatch("user/logout");
  94. this.$router.push(`/login`);
  95. }
  96. },
  97. },
  98. };
  99. </script>
  100. <style lang="scss">
  101. @import "./assets/css/index.scss";
  102. </style>