fix:去除权限验证,大屏今日巡查联调,修改echart图滚动逻辑,联调工单导出

This commit is contained in:
2024-12-05 17:25:06 +08:00
parent 70eb9f8e5e
commit 269fc702fe
30 changed files with 565 additions and 919 deletions
+18 -1
View File
@@ -2,7 +2,7 @@
* @Author: SunTao 328867980@qq.com
* @Date: 2024-11-28 10:26:24
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2024-11-28 10:26:24
* @LastEditTime: 2024-12-05 13:53:53
* @FilePath: \znxjxt-ui\src\api\xj\inspection\center.js
* @Description: 巡检中心-预警中心接口
*/
@@ -32,3 +32,20 @@ export function markNoticeRead(id) {
method: "post",
});
}
// 标记所有通知为已读
export function noticeReadAll() {
return request({
url: "/notice/readAll",
method: "post",
});
}
// 批量删除通知
export function deleteNotice(ids) {
return request({
url: "/notice/remove",
method: "post",
data: ids,
});
}
+9
View File
@@ -130,3 +130,12 @@ export function getDefectTypes() {
method: "get",
});
}
// 获取大屏通知列表
export function getNoticeList(params) {
return request({
url: "/notice/list",
method: "get",
params,
});
}
+2 -1
View File
@@ -2,7 +2,7 @@
* @Author: SunTao 328867980@qq.com
* @Date: 2024-10-14 10:04:12
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2024-12-03 11:43:45
* @LastEditTime: 2024-12-05 15:34:41
* @FilePath: \znxjxt-ui\src\api\xj\task.js
* @Description: 巡检任务管理接口
*/
@@ -70,6 +70,7 @@ export function exportDefectData(params) {
return request({
url: "/xj/defect/exportNewDefectByTaskId",
method: "get",
responseType: "blob",
params,
});
}