From 90b486ba54098be293a256d9313d201a3bd5221f Mon Sep 17 00:00:00 2001 From: ludc Date: 星期三, 18 十月 2023 21:31:02 +0800 Subject: [PATCH] 1、编码规则增加显示所有者列,高级查询中增加所有者; 2、用户管理界面添加停用启用按钮。 --- Source/UBCS-WEB/src/api/logs.js | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/UBCS-WEB/src/api/logs.js b/Source/UBCS-WEB/src/api/logs.js index 287ace9..7538730 100644 --- a/Source/UBCS-WEB/src/api/logs.js +++ b/Source/UBCS-WEB/src/api/logs.js @@ -2,7 +2,7 @@ export const getUsualList = (current, size) => { return request({ - url: '/api/blade-log/usual/list', + url: '/api/ubcs-log/usual/list', method: 'get', params: { current, @@ -13,7 +13,7 @@ export const getApiList = (current, size) => { return request({ - url: '/api/blade-log/api/list', + url: '/api/ubcs-log/api/list', method: 'get', params: { current, @@ -24,7 +24,7 @@ export const getErrorList = (current, size) => { return request({ - url: '/api/blade-log/error/list', + url: '/api/ubcs-log/error/list', method: 'get', params: { current, @@ -36,7 +36,7 @@ export const getUsualLogs = (id) => { return request({ - url: '/api/blade-log/usual/detail', + url: '/api/ubcs-log/usual/detail', method: 'get', params: { id, @@ -45,7 +45,7 @@ } export const getApiLogs = (id) => { return request({ - url: '/api/blade-log/api/detail', + url: '/api/ubcs-log/api/detail', method: 'get', params: { id, @@ -54,7 +54,7 @@ } export const getErrorLogs = (id) => { return request({ - url: '/api/blade-log/error/detail', + url: '/api/ubcs-log/error/detail', method: 'get', params: { id, -- Gitblit v1.9.3