Commit 01401887726eb9fa1af17950ab2255281b507f55

Authored by loveumiko
1 parent 96b74e63

fix: 隐藏GBT81的逻辑和页面展示

@@ -8,10 +8,10 @@ VITE_GLOB_PUBLIC_PATH = / @@ -8,10 +8,10 @@ VITE_GLOB_PUBLIC_PATH = /
8 # Please note that no line breaks 8 # Please note that no line breaks
9 9
10 # 本地 10 # 本地
11 -VITE_PROXY = [["/api","http://10.0.152.126:8080/api"],["/thingskit-scada","http://localhost:5173/thingskit-scada"],["/large-designer", "http://localhost:5555/large-designer/"]] 11 +VITE_PROXY = [["/api","http://222.180.200.114:48080/api"],["/thingskit-scada","http://localhost:5173/thingskit-scada"],["/large-designer", "http://localhost:5555/large-designer/"]]
12 12
13 # 实时数据的ws地址 13 # 实时数据的ws地址
14 -VITE_GLOB_WEB_SOCKET = ws://10.152.126:8080/api/ws/plugins/telemetry?token= 14 +VITE_GLOB_WEB_SOCKET = ws://222.180.200.114:48080/api/ws/plugins/telemetry?token=
15 15
16 # Delete console 16 # Delete console
17 VITE_GLOB_DROP_CONSOLE = true 17 VITE_GLOB_DROP_CONSOLE = true
@@ -118,9 +118,9 @@ @@ -118,9 +118,9 @@
118 setup(_, { emit }) { 118 setup(_, { emit }) {
119 const searchInfo = reactive<Recordable>({}); 119 const searchInfo = reactive<Recordable>({});
120 const { organizationIdTreeRef, resetFn } = useResetOrganizationTree(searchInfo); 120 const { organizationIdTreeRef, resetFn } = useResetOrganizationTree(searchInfo);
121 - const [registerModal, { openModal }] = useModal(); 121 + const [registerModal, { openModal }] = useModal(); //手动输入
122 122
123 - const [registerModal1, { openModal: openModal1 }] = useModal(); 123 + const [registerModal1, { openModal: openModal1 }] = useModal(); //流媒体获取
124 // 表格hooks 124 // 表格hooks
125 const [registerTable, { reload, setProps, clearSelectedRowKeys }] = useTable({ 125 const [registerTable, { reload, setProps, clearSelectedRowKeys }] = useTable({
126 title: '视频列表', 126 title: '视频列表',
@@ -62,9 +62,9 @@ @@ -62,9 +62,9 @@
62 <TabPane v-if="!isTransportType" key="task" tab="任务"> 62 <TabPane v-if="!isTransportType" key="task" tab="任务">
63 <Task :tbDeviceId="deviceDetail.tbDeviceId" /> 63 <Task :tbDeviceId="deviceDetail.tbDeviceId" />
64 </TabPane> 64 </TabPane>
65 - <TabPane v-if="false" key="videoChannel" tab="视频通道"> 65 + <!-- <TabPane v-if="false" key="videoChannel" tab="视频通道">
66 <VideoChannel :deviceDetail="deviceDetail" :fromId="deviceDetail?.tbDeviceId" /> 66 <VideoChannel :deviceDetail="deviceDetail" :fromId="deviceDetail?.tbDeviceId" />
67 - </TabPane> 67 + </TabPane> -->
68 </Tabs> 68 </Tabs>
69 </BasicDrawer> 69 </BasicDrawer>
70 </template> 70 </template>
@@ -85,7 +85,7 @@ @@ -85,7 +85,7 @@
85 import EventManage from '../tabs/EventManage/index.vue'; 85 import EventManage from '../tabs/EventManage/index.vue';
86 import { DeviceRecord } from '/@/api/device/model/deviceModel'; 86 import { DeviceRecord } from '/@/api/device/model/deviceModel';
87 import Task from '../tabs/Task.vue'; 87 import Task from '../tabs/Task.vue';
88 - import { VideoChannel } from '../tabs/VideoChannel/index'; 88 + // import { VideoChannel } from '../tabs/VideoChannel/index';
89 89
90 export default defineComponent({ 90 export default defineComponent({
91 name: 'DeviceModal', 91 name: 'DeviceModal',
@@ -103,7 +103,7 @@ @@ -103,7 +103,7 @@
103 CommandRecord, 103 CommandRecord,
104 EventManage, 104 EventManage,
105 Task, 105 Task,
106 - VideoChannel, 106 + // VideoChannel,
107 }, 107 },
108 emits: ['reload', 'register', 'openTbDeviceDetail', 'openGatewayDeviceDetail'], 108 emits: ['reload', 'register', 'openTbDeviceDetail', 'openGatewayDeviceDetail'],
109 setup(_props, { emit }) { 109 setup(_props, { emit }) {