diff --git a/Dkl-vue3-ui-DP/src/api/WarningInformation.js b/Dkl-vue3-ui-DP/src/api/WarningInformation.js new file mode 100644 index 0000000..9fd455f --- /dev/null +++ b/Dkl-vue3-ui-DP/src/api/WarningInformation.js @@ -0,0 +1,62 @@ +import request from '@/utils/request' + +// 查询预警信息列表 +export function listInformation(query) { + return request({ + url: '/large/information/list', + method: 'get', + params: query + }) +} + +// 查询预警信息详细 +export function getInformation(id) { + return request({ + url: '/large/information/' + id, + method: 'get' + }) +} + +// 新增预警信息 +export function addInformation(data) { + return request({ + url: '/large/information', + method: 'post', + data: data + }) +} + +// 修改预警信息 +export function updateInformation(data) { + return request({ + url: '/large/information', + method: 'put', + data: data + }) +} + +// 删除预警信息 +export function delInformation(id) { + return request({ + url: '/large/information/' + id, + method: 'delete' + }) +} + +// 查询名称列表 +export function nameList(query) { + return request({ + url: '/large/rules/listAll', + method: 'get', + params: query + }) +} + +// 下发弹窗的提交按钮 +export function xiafaSrue(data) { + return request({ + url: '/large/handle', + method: 'post', + data: data + }) +} \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/api/Warningdisposal.js b/Dkl-vue3-ui-DP/src/api/Warningdisposal.js new file mode 100644 index 0000000..1a48743 --- /dev/null +++ b/Dkl-vue3-ui-DP/src/api/Warningdisposal.js @@ -0,0 +1,51 @@ +import request from '@/utils/request' + +// 查询预警信息处置列表 +export function listHandle(query) { + return request({ + url: '/large/handle/list', + method: 'get', + params: query + }) +} + +// 查询预警信息处置详细 +export function getHandle(id) { + return request({ + url: '/large/handle/' + id, + method: 'get' + }) +} + +// 新增预警信息处置 +export function addHandle(data) { + return request({ + url: '/large/handle', + method: 'post', + data: data + }) +} +// 受理 +export function addprocess(data) { + return request({ + url: '/large/process', + method: 'post', + data: data + }) +} +// 修改预警信息处置 +export function updateHandle(data) { + return request({ + url: '/large/handle', + method: 'put', + data: data + }) +} + +// 删除预警信息处置 +export function delHandle(id) { + return request({ + url: '/large/handle/' + id, + method: 'delete' + }) +} diff --git a/Dkl-vue3-ui-DP/src/api/Warningthreshold.js b/Dkl-vue3-ui-DP/src/api/Warningthreshold.js new file mode 100644 index 0000000..da8c42f --- /dev/null +++ b/Dkl-vue3-ui-DP/src/api/Warningthreshold.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询容量阀值列表 +export function listThreshold(query) { + return request({ + url: '/large/threshold/list', + method: 'get', + params: query + }) +} + +// 查询容量阀值详细 +export function getThreshold(id) { + return request({ + url: '/large/threshold/' + id, + method: 'get' + }) +} + +// 新增容量阀值 +export function addThreshold(data) { + return request({ + url: '/large/threshold', + method: 'post', + data: data + }) +} + +// 修改容量阀值 +export function updateThreshold(data) { + return request({ + url: '/large/threshold', + method: 'put', + data: data + }) +} + +// 删除容量阀值 +export function delThreshold(id) { + return request({ + url: '/large/threshold/' + id, + method: 'delete' + }) +} diff --git a/Dkl-vue3-ui-DP/src/api/videoInfo.js b/Dkl-vue3-ui-DP/src/api/videoInfo.js new file mode 100644 index 0000000..1489a0d --- /dev/null +++ b/Dkl-vue3-ui-DP/src/api/videoInfo.js @@ -0,0 +1,63 @@ +import request from "@/utils/request"; +import signMd5Utils from "./signMd5Utils"; + +// 列表 +export function getklList(query) { + return request({ + url: "/large/videoStorageInformation/list", + method: "get", + params: query, + }); +} + +// 新增菜单 +export function getklListadd(data) { + return request({ + url: "/large/videoStorageInformation", + method: 'post', + data: data + }) +} + +// 修改菜单 +export function getklListedit(data) { + return request({ + url: "/large/videoStorageInformation", + method: 'put', + data: data + }) +} + +// 删除菜单 +export function getklListremove(id) { + return request({ + url: '/large/videoStorageInformation/' + id, + method: 'delete' + }) +} + +// 修改按钮回显 +export function getklListedithx(id) { + return request({ + url: '/large/videoStorageInformation/' + id, + method: 'get' + }) +} + +// 活动list +export function getsbLists(query) { + return request({ + url: '/large/activity/listAll', + method: "get", + params: query, + }); +} + +// 设备list +export function getsbLists2(query) { + return request({ + url: '/large/videoStorageInformation/listAll', + method: "get", + params: query, + }); +} \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/api/weather.js b/Dkl-vue3-ui-DP/src/api/weather.js new file mode 100644 index 0000000..e5cf845 --- /dev/null +++ b/Dkl-vue3-ui-DP/src/api/weather.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询天气信息列表 +export function listWeather(query) { + return request({ + url: '/large/weather/list', + method: 'get', + params: query + }) +} + +// 查询天气信息详细 +export function getWeather(id) { + return request({ + url: '/large/weather/' + id, + method: 'get' + }) +} + +// 新增天气信息 +export function addWeather(data) { + return request({ + url: '/large/weather', + method: 'post', + data: data + }) +} + +// 修改天气信息 +export function updateWeather(data) { + return request({ + url: '/large/weather', + method: 'put', + data: data + }) +} + +// 删除天气信息 +export function delWeather(id) { + return request({ + url: '/large/weather/' + id, + method: 'delete' + }) +} diff --git a/Dkl-vue3-ui-DP/src/components/Breadcrumb/index.vue b/Dkl-vue3-ui-DP/src/components/Breadcrumb/index.vue deleted file mode 100644 index c13e5e9..0000000 --- a/Dkl-vue3-ui-DP/src/components/Breadcrumb/index.vue +++ /dev/null @@ -1,98 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/day.vue b/Dkl-vue3-ui-DP/src/components/Crontab/day.vue deleted file mode 100644 index 39263f5..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/day.vue +++ /dev/null @@ -1,174 +0,0 @@ - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/hour.vue b/Dkl-vue3-ui-DP/src/components/Crontab/hour.vue deleted file mode 100644 index 8e7c21c..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/hour.vue +++ /dev/null @@ -1,133 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/index.vue b/Dkl-vue3-ui-DP/src/components/Crontab/index.vue deleted file mode 100644 index 103cf4c..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/index.vue +++ /dev/null @@ -1,309 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/min.vue b/Dkl-vue3-ui-DP/src/components/Crontab/min.vue deleted file mode 100644 index 65f0946..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/min.vue +++ /dev/null @@ -1,126 +0,0 @@ - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/month.vue b/Dkl-vue3-ui-DP/src/components/Crontab/month.vue deleted file mode 100644 index e561ba4..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/month.vue +++ /dev/null @@ -1,141 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/result.vue b/Dkl-vue3-ui-DP/src/components/Crontab/result.vue deleted file mode 100644 index 5a812ee..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/result.vue +++ /dev/null @@ -1,540 +0,0 @@ - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/second.vue b/Dkl-vue3-ui-DP/src/components/Crontab/second.vue deleted file mode 100644 index 15e47a0..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/second.vue +++ /dev/null @@ -1,128 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/week.vue b/Dkl-vue3-ui-DP/src/components/Crontab/week.vue deleted file mode 100644 index e59da22..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/week.vue +++ /dev/null @@ -1,197 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Crontab/year.vue b/Dkl-vue3-ui-DP/src/components/Crontab/year.vue deleted file mode 100644 index fa921ae..0000000 --- a/Dkl-vue3-ui-DP/src/components/Crontab/year.vue +++ /dev/null @@ -1,149 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/DictTag/index.vue b/Dkl-vue3-ui-DP/src/components/DictTag/index.vue deleted file mode 100644 index 32cd57c..0000000 --- a/Dkl-vue3-ui-DP/src/components/DictTag/index.vue +++ /dev/null @@ -1,89 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/Echarts/index.vue b/Dkl-vue3-ui-DP/src/components/Echarts/index.vue deleted file mode 100644 index a82037b..0000000 --- a/Dkl-vue3-ui-DP/src/components/Echarts/index.vue +++ /dev/null @@ -1,120 +0,0 @@ - - - diff --git a/Dkl-vue3-ui-DP/src/components/Editor/index.vue b/Dkl-vue3-ui-DP/src/components/Editor/index.vue deleted file mode 100644 index 1bd01ed..0000000 --- a/Dkl-vue3-ui-DP/src/components/Editor/index.vue +++ /dev/null @@ -1,251 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/FileUpload/index.vue b/Dkl-vue3-ui-DP/src/components/FileUpload/index.vue deleted file mode 100644 index 9a07847..0000000 --- a/Dkl-vue3-ui-DP/src/components/FileUpload/index.vue +++ /dev/null @@ -1,218 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/HeaderSearch/index.vue b/Dkl-vue3-ui-DP/src/components/HeaderSearch/index.vue deleted file mode 100644 index 2a4a644..0000000 --- a/Dkl-vue3-ui-DP/src/components/HeaderSearch/index.vue +++ /dev/null @@ -1,188 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/IconSelect/index.vue b/Dkl-vue3-ui-DP/src/components/IconSelect/index.vue deleted file mode 100644 index 517a4af..0000000 --- a/Dkl-vue3-ui-DP/src/components/IconSelect/index.vue +++ /dev/null @@ -1,111 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/IconSelect/requireIcons.js b/Dkl-vue3-ui-DP/src/components/IconSelect/requireIcons.js deleted file mode 100644 index ac22fd7..0000000 --- a/Dkl-vue3-ui-DP/src/components/IconSelect/requireIcons.js +++ /dev/null @@ -1,8 +0,0 @@ -let icons = [] -const modules = import.meta.glob('./../../assets/icons/svg/*.svg'); -for (const path in modules) { - const p = path.split('assets/icons/svg/')[1].split('.svg')[0]; - icons.push(p); -} - -export default icons \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/ImagePreview/index.vue b/Dkl-vue3-ui-DP/src/components/ImagePreview/index.vue deleted file mode 100644 index 7e3d2b6..0000000 --- a/Dkl-vue3-ui-DP/src/components/ImagePreview/index.vue +++ /dev/null @@ -1,92 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/ImageUpload/index.vue b/Dkl-vue3-ui-DP/src/components/ImageUpload/index.vue deleted file mode 100644 index 4d19693..0000000 --- a/Dkl-vue3-ui-DP/src/components/ImageUpload/index.vue +++ /dev/null @@ -1,216 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/Pagination/index.vue b/Dkl-vue3-ui-DP/src/components/Pagination/index.vue deleted file mode 100644 index 11d4caf..0000000 --- a/Dkl-vue3-ui-DP/src/components/Pagination/index.vue +++ /dev/null @@ -1,104 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/ParentView/index.vue b/Dkl-vue3-ui-DP/src/components/ParentView/index.vue deleted file mode 100644 index 7bf6148..0000000 --- a/Dkl-vue3-ui-DP/src/components/ParentView/index.vue +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/Dkl-vue3-ui-DP/src/components/QuillEditor/index.vue b/Dkl-vue3-ui-DP/src/components/QuillEditor/index.vue deleted file mode 100644 index 9dc2d6b..0000000 --- a/Dkl-vue3-ui-DP/src/components/QuillEditor/index.vue +++ /dev/null @@ -1,46 +0,0 @@ - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/RightToolbar/index.vue b/Dkl-vue3-ui-DP/src/components/RightToolbar/index.vue deleted file mode 100644 index 5a53dd4..0000000 --- a/Dkl-vue3-ui-DP/src/components/RightToolbar/index.vue +++ /dev/null @@ -1,134 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/Screenfull/index.vue b/Dkl-vue3-ui-DP/src/components/Screenfull/index.vue deleted file mode 100644 index 2eced12..0000000 --- a/Dkl-vue3-ui-DP/src/components/Screenfull/index.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/SizeSelect/index.vue b/Dkl-vue3-ui-DP/src/components/SizeSelect/index.vue deleted file mode 100644 index 4c2e7e9..0000000 --- a/Dkl-vue3-ui-DP/src/components/SizeSelect/index.vue +++ /dev/null @@ -1,45 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/SvgIcon/index.vue b/Dkl-vue3-ui-DP/src/components/SvgIcon/index.vue deleted file mode 100644 index 8c101f6..0000000 --- a/Dkl-vue3-ui-DP/src/components/SvgIcon/index.vue +++ /dev/null @@ -1,53 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/SvgIcon/svgicon.js b/Dkl-vue3-ui-DP/src/components/SvgIcon/svgicon.js deleted file mode 100644 index 4431719..0000000 --- a/Dkl-vue3-ui-DP/src/components/SvgIcon/svgicon.js +++ /dev/null @@ -1,10 +0,0 @@ -import * as components from '@element-plus/icons-vue' - -export default { - install: (app) => { - for (const key in components) { - const componentConfig = components[key]; - app.component(componentConfig.name, componentConfig); - } - }, -}; diff --git a/Dkl-vue3-ui-DP/src/components/TopNav/index.vue b/Dkl-vue3-ui-DP/src/components/TopNav/index.vue deleted file mode 100644 index eed37b9..0000000 --- a/Dkl-vue3-ui-DP/src/components/TopNav/index.vue +++ /dev/null @@ -1,216 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/VideoMonitor.vue b/Dkl-vue3-ui-DP/src/components/VideoMonitor.vue deleted file mode 100644 index 2cc842c..0000000 --- a/Dkl-vue3-ui-DP/src/components/VideoMonitor.vue +++ /dev/null @@ -1,70 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/VideoPlay/index copy.vue b/Dkl-vue3-ui-DP/src/components/VideoPlay/index copy.vue deleted file mode 100644 index 70beae3..0000000 --- a/Dkl-vue3-ui-DP/src/components/VideoPlay/index copy.vue +++ /dev/null @@ -1,98 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/VideoPlay/index.vue b/Dkl-vue3-ui-DP/src/components/VideoPlay/index.vue deleted file mode 100644 index f181622..0000000 --- a/Dkl-vue3-ui-DP/src/components/VideoPlay/index.vue +++ /dev/null @@ -1,113 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/WangEditor.vue b/Dkl-vue3-ui-DP/src/components/WangEditor.vue deleted file mode 100644 index a0047d3..0000000 --- a/Dkl-vue3-ui-DP/src/components/WangEditor.vue +++ /dev/null @@ -1,188 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/call.vue b/Dkl-vue3-ui-DP/src/components/call.vue deleted file mode 100644 index 12fb3a7..0000000 --- a/Dkl-vue3-ui-DP/src/components/call.vue +++ /dev/null @@ -1,108 +0,0 @@ - - - - - diff --git a/Dkl-vue3-ui-DP/src/components/dkl/Doc/index.vue b/Dkl-vue3-ui-DP/src/components/dkl/Doc/index.vue deleted file mode 100644 index f081160..0000000 --- a/Dkl-vue3-ui-DP/src/components/dkl/Doc/index.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - \ No newline at end of file diff --git a/Dkl-vue3-ui-DP/src/components/dkl/Git/index.vue b/Dkl-vue3-ui-DP/src/components/dkl/Git/index.vue deleted file mode 100644 index 3bb34f3..0000000 --- a/Dkl-vue3-ui-DP/src/components/dkl/Git/index.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - diff --git a/Dkl-vue3-ui-DP/src/components/iFrame/index.vue b/Dkl-vue3-ui-DP/src/components/iFrame/index.vue deleted file mode 100644 index 091b1a2..0000000 --- a/Dkl-vue3-ui-DP/src/components/iFrame/index.vue +++ /dev/null @@ -1,31 +0,0 @@ -