123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <div id="app" v-cloak>
- <router-view />
- </div>
- </template>
- <script>
- import { JudgeEnvironment } from "@/utils/validate";
- import { getCode } from "@/utils/dingding";
- export default {
- name: "App",
- data() {
- return {
- code: "",
- };
- },
- async created() {
- if (JudgeEnvironment() === "isDingDing") {
- await this.testing();
- } else {
- await this.getMenu();
- }
- },
- methods: {
- async testing() {
- await getCode(async (code) => {
- this.code = code;
- if (this.code != null && this.code != "") {
- await this.setcode(this.code);
- } else {
- await this.logout();
- }
- });
- },
- async setcode(code) {
- let model = { code: code };
- this.$store
- .dispatch("user/dingUserInfor", model)
- .then(async (res) => {
- if (res === "success") {
- await this.getMenu();
- } else {
- await this.logout();
- }
- })
- .catch(async (err) => {
- await this.logout();
- });
- },
- async getMenu() {
- this.$store
- .dispatch("user/getMenuList", this)
- .then(async (res) => {
- if (res === "noToken") {
- await this.logout();
- } else if (res === "success" || res === "success-dataV") {
- if (
- this.$route.path === "/loadingPage" ||
- this.$route.path === "/" ||
- this.$route.path === "/login"
- ) {
- if (res === "success-dataV") {
- window.vm.$router.replace("/bigScreen/datavScr");
- } else {
- window.vm.$router.replace("/welcome");
- }
- }
- } else {
- await this.logout();
- }
- })
- .catch(async (err) => {
- await this.logout();
- });
- },
- async logout() {
- if (this.$route.path !== "/login") {
- await this.$store.dispatch("user/logout");
- console.log(this.$route.fullPath);
- this.$router.push(`/login`);
- }
- },
- },
- };
- </script>
- <style lang="scss">
- @import "./assets/css/index.scss";
- //因为element-ui的confim组件并不是vue生成的不具有[data-v....],所以全局注入一个class
- // .lzx_BtnErr{
- // background: #f56c6c !important;
- // color: #fff !important;
- // }
- </style>
|