Showing
3 changed files
with
8 additions
and
8 deletions
... | ... | @@ -8,10 +8,10 @@ VITE_GLOB_PUBLIC_PATH = / |
8 | 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 | 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 | 16 | # Delete console |
17 | 17 | VITE_GLOB_DROP_CONSOLE = true | ... | ... |
... | ... | @@ -118,9 +118,9 @@ |
118 | 118 | setup(_, { emit }) { |
119 | 119 | const searchInfo = reactive<Recordable>({}); |
120 | 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 | 124 | // 表格hooks |
125 | 125 | const [registerTable, { reload, setProps, clearSelectedRowKeys }] = useTable({ |
126 | 126 | title: '视频列表', | ... | ... |
... | ... | @@ -62,9 +62,9 @@ |
62 | 62 | <TabPane v-if="!isTransportType" key="task" tab="任务"> |
63 | 63 | <Task :tbDeviceId="deviceDetail.tbDeviceId" /> |
64 | 64 | </TabPane> |
65 | - <TabPane v-if="false" key="videoChannel" tab="视频通道"> | |
65 | + <!-- <TabPane v-if="false" key="videoChannel" tab="视频通道"> | |
66 | 66 | <VideoChannel :deviceDetail="deviceDetail" :fromId="deviceDetail?.tbDeviceId" /> |
67 | - </TabPane> | |
67 | + </TabPane> --> | |
68 | 68 | </Tabs> |
69 | 69 | </BasicDrawer> |
70 | 70 | </template> |
... | ... | @@ -85,7 +85,7 @@ |
85 | 85 | import EventManage from '../tabs/EventManage/index.vue'; |
86 | 86 | import { DeviceRecord } from '/@/api/device/model/deviceModel'; |
87 | 87 | import Task from '../tabs/Task.vue'; |
88 | - import { VideoChannel } from '../tabs/VideoChannel/index'; | |
88 | + // import { VideoChannel } from '../tabs/VideoChannel/index'; | |
89 | 89 | |
90 | 90 | export default defineComponent({ |
91 | 91 | name: 'DeviceModal', |
... | ... | @@ -103,7 +103,7 @@ |
103 | 103 | CommandRecord, |
104 | 104 | EventManage, |
105 | 105 | Task, |
106 | - VideoChannel, | |
106 | + // VideoChannel, | |
107 | 107 | }, |
108 | 108 | emits: ['reload', 'register', 'openTbDeviceDetail', 'openGatewayDeviceDetail'], |
109 | 109 | setup(_props, { emit }) { | ... | ... |