Browse Source

添加默认路由页面

CzRger 1 year ago
parent
commit
0b3434db37

+ 6 - 0
src/router/modules/gis.ts

@@ -1,5 +1,11 @@
 export const gisRouter: any = [
   {
+    name: '6f2684a7-78b6-497d-9af2-1e6f1f61b791',
+    path: 'index',
+    meta: {title: '默认', noMenu: true},
+    component: () => import('@/views/gis/business/default/index.vue'),
+  },
+  {
     name: 'c6b5fb40-4be6-4e7c-af82-6ec98176b0a0',
     path: 'enterprise',
     meta: {title: '企业一张图'},

+ 1 - 1
src/views/gis/business/common/business-main.vue

@@ -3,7 +3,7 @@
     <div class="business-main-com_expend __hover" :class="{'business-main-com_expend-not': !expend}" @click="expend = !expend"></div>
     <div class="business-main-com_content __box-shadow" v-show="expend">
       <div class="business-main-com_content-head">
-        <SvgIcon name="close_2" size="18"/>{{title}}
+        <SvgIcon name="close_2" size="18" class="__hover" @click="$router.push('/gis/index')"/>{{title}}
       </div>
       <slot/>
     </div>

+ 41 - 0
src/views/gis/business/default/index.vue

@@ -0,0 +1,41 @@
+<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 {ElMessage, ElMessageBox} from "element-plus";
+
+export default defineComponent({
+  name: '',
+  components: {},
+  props: {},
+  setup(props, {emit}) {
+    const store = useStore();
+    const router = useRouter();
+    const route = useRoute();
+    const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
+    const state = reactive({})
+    onMounted(() => {
+    })
+    return {
+      ...toRefs(state),
+    }
+  },
+})
+</script>
+
+<style scoped lang="scss">
+</style>

+ 1 - 1
src/views/gis/layout/index.vue

@@ -128,7 +128,7 @@ export default defineComponent({
       // initWMSElement()
     }
     const menuCpt = computed(() => {
-      return router.options.routes.filter(v => v.name === store.state.gis.menuRootName)[0].children
+      return router.options.routes.filter(v => v.name === store.state.gis.menuRootName)[0].children?.filter(v => !v.meta.noMenu)
     })
     const searchHandleMapSearch = (queryString: string, cb: (arg: any) => void) => {
       if (queryString.trim()) {