From 02a499a26cc59af59f1216985263d8b7abc5a9f9 Mon Sep 17 00:00:00 2001 From: joylink_fanyuhong <18706759286@163.com> Date: Fri, 14 Jan 2022 17:23:25 +0800 Subject: [PATCH] =?UTF-8?q?iscs=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/iscs.js | 24 ++- src/views/fileManage/voiceManage/add.vue | 162 ++++++------------ .../config/broadcast/centerHome.vue | 97 ++++++++--- .../config/broadcast/stationHome.vue | 105 +++++++++--- .../config/broadcast/voiceBroadcast.vue | 55 +++--- .../iscsSystem/config/pis/infoBroadcast.vue | 154 ++++++----------- .../iscs/iscsSystem/config/pis/mainScreen.vue | 42 ++++- src/views/system/iscsDeviceManage/add.vue | 26 +++ src/views/system/iscsDeviceManage/index.vue | 24 +++ src/views/system/iscsResourcesManage/add.vue | 3 + .../system/iscsResourcesManage/index.vue | 6 +- src/views/system/voiceTraining/index.vue | 1 + 12 files changed, 402 insertions(+), 297 deletions(-) diff --git a/src/api/iscs.js b/src/api/iscs.js index b1ae9c608..805342c3f 100644 --- a/src/api/iscs.js +++ b/src/api/iscs.js @@ -94,7 +94,21 @@ export function deleteIscsDevice(id) { method: 'delete' }); } - +// 根据mapId查询设备列表 +export function getIscsDeviceListByMapId(mapId) { + return request({ + url: `/api/iscsDevice/list/mapId/${mapId}`, + method: 'get' + }); +} +// 根据条件查询设备列表 +export function queryIscsDeviceCod(params) { + return request({ + url: `/api/iscsDevice/list/criteria`, + method: 'get', + params + }); +} // 创建ISCS系统资源 export function createIscsResources(data) { return request({ @@ -132,3 +146,11 @@ export function deleteIscsResources(id) { method: 'delete' }); } +// 按条件查询ISCS系统资源 +export function queryIscsResourcesCod(params) { + return request({ + url: `/api/systemRes/list/criteria`, + method: 'get', + params + }); +} diff --git a/src/views/fileManage/voiceManage/add.vue b/src/views/fileManage/voiceManage/add.vue index db1cc2d31..088fa645a 100644 --- a/src/views/fileManage/voiceManage/add.vue +++ b/src/views/fileManage/voiceManage/add.vue @@ -9,15 +9,24 @@ - - + + - - - - - - + + + 点击上传 + @@ -32,11 +41,12 @@