|
@@ -10,7 +10,7 @@
|
|
<a-tab-pane :key="7" tab="深光Mesh场景" :disabled="loading" />
|
|
<a-tab-pane :key="7" tab="深光Mesh场景" :disabled="loading" />
|
|
<a-tab-pane :key="3" tab="四维双目Lite" :disabled="loading" />
|
|
<a-tab-pane :key="3" tab="四维双目Lite" :disabled="loading" />
|
|
<a-tab-pane :key="4" tab="用户作品" :disabled="loading" />
|
|
<a-tab-pane :key="4" tab="用户作品" :disabled="loading" />
|
|
- <a-tab-pane :key="41" tab="看见全景VR" :disabled="loading" /> </a-tabs
|
|
|
|
|
|
+ <a-tab-pane :key="41" v-if="!isDev" tab="看见全景VR" :disabled="loading" /> </a-tabs
|
|
></template>
|
|
></template>
|
|
<div class="desc-wrap-BasicTable">
|
|
<div class="desc-wrap-BasicTable">
|
|
<BasicTable v-show="tableType == 4" @register="registerTableViewKankan">
|
|
<BasicTable v-show="tableType == 4" @register="registerTableViewKankan">
|
|
@@ -200,6 +200,7 @@
|
|
import { searchForm, cameraScene, cameraSearchForm, quanjSearchForm } from './data';
|
|
import { searchForm, cameraScene, cameraSearchForm, quanjSearchForm } from './data';
|
|
import { useModal } from '/@/components/Modal';
|
|
import { useModal } from '/@/components/Modal';
|
|
import { usePermissionStore } from '/@/store/modules/permission';
|
|
import { usePermissionStore } from '/@/store/modules/permission';
|
|
|
|
+ import { useUserStore } from '/@/store/modules/user';
|
|
import { otherInfoStore } from '/@/store/modules/other';
|
|
import { otherInfoStore } from '/@/store/modules/other';
|
|
import {
|
|
import {
|
|
getquanjingSchemas,
|
|
getquanjingSchemas,
|
|
@@ -241,6 +242,8 @@
|
|
const otherInfo = otherInfoStore();
|
|
const otherInfo = otherInfoStore();
|
|
const OverviewInfo = computed(() => otherInfo.getOverviewInfo);
|
|
const OverviewInfo = computed(() => otherInfo.getOverviewInfo);
|
|
const { userName } = OverviewInfo.value;
|
|
const { userName } = OverviewInfo.value;
|
|
|
|
+ const userStore = useUserStore();
|
|
|
|
+ const isDev = computed(() => userStore.getSystemEnv);
|
|
const { createMessage, createConfirm } = useMessage();
|
|
const { createMessage, createConfirm } = useMessage();
|
|
const timer = ref<NodeJS.Timeout | number | undefined | null>(null);
|
|
const timer = ref<NodeJS.Timeout | number | undefined | null>(null);
|
|
const tableType = ref<number>(0); //0看看 、1看见、2深时
|
|
const tableType = ref<number>(0); //0看看 、1看见、2深时
|
|
@@ -535,6 +538,7 @@
|
|
operateSceneList,
|
|
operateSceneList,
|
|
registerTableScene,
|
|
registerTableScene,
|
|
rowSelection: { type: 'checkbox' },
|
|
rowSelection: { type: 'checkbox' },
|
|
|
|
+ isDev,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
});
|
|
});
|