caozhaorui 1 year ago
parent
commit
b525fc8a57
3 changed files with 60 additions and 0 deletions
  1. 5 0
      src/router/modules/static.ts
  2. 45 0
      src/views/gis/auth.vue
  3. 10 0
      src/views/gis/layout/index.vue

+ 5 - 0
src/router/modules/static.ts

@@ -6,5 +6,10 @@ const staticRouter = [
   //   name: 'fde2b927-2116-43f6-ba5e-94be4abacf39',
   //   component: () => import('@/views/global/login.vue')
   // },
+  {
+    path: '/auth',
+    name: 'auth',
+    component: () => import('@/views/gis/auth.vue')
+  },
 ]
 export default staticRouter

+ 45 - 0
src/views/gis/auth.vue

@@ -0,0 +1,45 @@
+<template>
+</template>
+
+<script lang="ts">
+import {
+  defineComponent,
+  computed,
+  onMounted,
+  ref,
+  reactive,
+  watch,
+  getCurrentInstance,
+  ComponentInternalInstance,
+  toRefs,
+  nextTick
+} from 'vue'
+import {useStore} from 'vuex'
+import {useRouter, useRoute} from 'vue-router'
+import * as source from "ol/source";
+import * as layer from "ol/layer";
+import * as format from "ol/format";
+
+export default defineComponent({
+  name: '',
+  components: {},
+  setup() {
+    const store = useStore();
+    const router = useRouter();
+    const route = useRoute();
+    const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
+    const state = reactive({
+    })
+    onMounted(() => {
+      sessionStorage.setItem('auth', 'emmmmmm')
+      router.push('/gis')
+    })
+    return {
+      ...toRefs(state),
+    }
+  },
+})
+</script>
+
+<style scoped lang="scss">
+</style>

+ 10 - 0
src/views/gis/layout/index.vue

@@ -608,6 +608,16 @@ export default defineComponent({
       onRadiusSubmit()
     }
     onMounted(() => {
+      if (!sessionStorage.getItem('auth')) {
+        if(navigator.userAgent.indexOf("Firefox") != -1 || navigator.userAgent.indexOf("Chrome") != -1){
+          window.location.href = "about:blank";
+          window.close();
+        }else{
+          window.opener = null;
+          window.open("", "_self");
+          window.close();
+        }
+      }
     })
     return {
       ...toRefs(state),