From 35b574d7da7124bc9db0f22a1364d3240bcb6daf Mon Sep 17 00:00:00 2001 From: leiqiaochu Date: Mon, 13 Nov 2023 10:20:12 +0800 Subject: [PATCH] fix: bug#20093 --- src/api/account/notificationRecord.ts | 2 +- .../components/ViewDialog.vue | 39 ++++++++++++++++++- .../components/NotificationRecord/index.vue | 33 +++++++++------- 3 files changed, 57 insertions(+), 17 deletions(-) diff --git a/src/api/account/notificationRecord.ts b/src/api/account/notificationRecord.ts index 6cf7d876..7279b831 100644 --- a/src/api/account/notificationRecord.ts +++ b/src/api/account/notificationRecord.ts @@ -9,7 +9,7 @@ export const changeStatus_api = (type: '_read' | '_unread', data: string[]): any export const changeAllStatus = (type: '_read' | '_unread', data: string[]): any => server.post(`/notifications/${type}/provider`, data) //查看工作流通知详情 -export const getWorkflowNotice = (data:any) => server.post('/process/runtime/processes/_query?history=true',data) +export const getWorkflowNotice = (data:any) => server.post('/process/runtime/processes/_query/no-paging',data) // 查询告警记录详情 export const getDetail = (id: string): any => server.get(`/alarm/record/${id}`) diff --git a/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue b/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue index 0b52769e..7e7ba28e 100644 --- a/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue +++ b/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue @@ -16,6 +16,43 @@ +