From 319c25ed4ff5a93766b86d78fc4f15b2976322dd Mon Sep 17 00:00:00 2001 From: wuhongjian Date: Sun, 19 Jun 2022 18:59:14 +0800 Subject: [PATCH] getVideoList --- front/src/api/file.js | 15 +++- .../components/Infrastructure.vue | 82 +++++++++++-------- .../components/KnowledgeBase.vue | 8 +- 3 files changed, 63 insertions(+), 42 deletions(-) diff --git a/front/src/api/file.js b/front/src/api/file.js index bfec9b12..9862ba54 100644 --- a/front/src/api/file.js +++ b/front/src/api/file.js @@ -1,8 +1,8 @@ /* * @Author: hisense.wuhongjian * @Date: 2022-04-20 17:16:35 - * @LastEditors: hisense.liangjunhua - * @LastEditTime: 2022-06-19 17:32:12 + * @LastEditors: hisense.wuhongjian + * @LastEditTime: 2022-06-19 18:42:39 * @Description: 告诉大家这是什么 */ import request from '@/utils/request' @@ -54,6 +54,17 @@ export function count() { config2 ) } +export function getVideoList(params) { +   return axios.get( +     'http://10.134.135.9:8001/hx-weather-warning/camera/getCameraListByName?name=' + +       params.name + +       '&pageNo=' + +       params.pageNo + +       '&pageSize=' + +       params.pageSize, +     config2 +   ) + } // 能力云图-数据资源-总数据数 export function getRecord(params) { return axios.get( diff --git a/front/src/views/capabilityCloud/components/Infrastructure.vue b/front/src/views/capabilityCloud/components/Infrastructure.vue index dfda525a..1a5b9770 100644 --- a/front/src/views/capabilityCloud/components/Infrastructure.vue +++ b/front/src/views/capabilityCloud/components/Infrastructure.vue @@ -1,8 +1,8 @@