diff --git a/yanzhu-bigscreen/src/api/index.js b/yanzhu-bigscreen/src/api/index.js index e3c273a9..2e81d2d3 100644 --- a/yanzhu-bigscreen/src/api/index.js +++ b/yanzhu-bigscreen/src/api/index.js @@ -5,6 +5,7 @@ import weather from './weather' import detail from './detail' import dict from './dict' import greenCarbon from './greenCarbon' +import videoMonitor from './videoMonitor' export default { http:axios, downFile:download, @@ -12,5 +13,6 @@ export default { weather, detail, dict, - greenCarbon + greenCarbon, + videoMonitor } \ No newline at end of file diff --git a/yanzhu-bigscreen/src/api/videoMonitor.js b/yanzhu-bigscreen/src/api/videoMonitor.js new file mode 100644 index 00000000..4395fcbe --- /dev/null +++ b/yanzhu-bigscreen/src/api/videoMonitor.js @@ -0,0 +1,18 @@ +import request from "@/utils/request"; +const listVideoMonitor = (query) => { + return request({ + url: "/manage/videoMonitor/list", + method: "get", + params: query + }); + }; + const getYsToken=(id)=>{ + return request({ + url: '/manage/videoMonitor/getYsToken/' + id, + method: 'get' + }) + } + export default { + listVideoMonitor, + getYsToken + } \ No newline at end of file diff --git a/yanzhu-bigscreen/src/assets/icons/svg/4screen.svg b/yanzhu-bigscreen/src/assets/icons/svg/4screen.svg new file mode 100644 index 00000000..f85e93ce --- /dev/null +++ b/yanzhu-bigscreen/src/assets/icons/svg/4screen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/yanzhu-bigscreen/src/assets/icons/svg/9screen.svg b/yanzhu-bigscreen/src/assets/icons/svg/9screen.svg new file mode 100644 index 00000000..89fcbf50 --- /dev/null +++ b/yanzhu-bigscreen/src/assets/icons/svg/9screen.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/yanzhu-bigscreen/src/assets/icons/svg/video.svg b/yanzhu-bigscreen/src/assets/icons/svg/video.svg new file mode 100644 index 00000000..396885fb --- /dev/null +++ b/yanzhu-bigscreen/src/assets/icons/svg/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/yanzhu-bigscreen/src/components/header.vue b/yanzhu-bigscreen/src/components/header.vue index cf3ba1c7..0159b1ca 100644 --- a/yanzhu-bigscreen/src/components/header.vue +++ b/yanzhu-bigscreen/src/components/header.vue @@ -8,7 +8,7 @@