From edb033ccd7df53e2444f38c9657946ce15856153 Mon Sep 17 00:00:00 2001 From: panlinlin <648540858@qq.com> Date: 星期五, 26 三月 2021 18:32:36 +0800 Subject: [PATCH] 添加获取直播流的api --- web_src/src/router/index.js | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/web_src/src/router/index.js b/web_src/src/router/index.js index 93ef64d..fc55dd5 100644 --- a/web_src/src/router/index.js +++ b/web_src/src/router/index.js @@ -2,8 +2,9 @@ import VueRouter from 'vue-router' import control from '../components/control.vue' -import videoList from '../components/videoList.vue' +import deviceList from '../components/DeviceList.vue' import channelList from '../components/channelList.vue' +import pushVideoList from '../components/PushVideoList.vue' import devicePosition from '../components/devicePosition.vue' import login from '../components/Login.vue' import parentPlatformList from '../components/ParentPlatformList.vue' @@ -24,8 +25,12 @@ component: control, }, { - path: '/videoList', - component: videoList, + path: '/deviceList', + component: deviceList, + }, + { + path: '/pushVideoList', + component: pushVideoList, }, { path: '/login', -- Gitblit v1.8.0