refactor:查看 view,统一成详情 detail

This commit is contained in:
YunaiV
2025-04-07 19:48:28 +08:00
parent 64331fb4ac
commit 30a3157e7b
21 changed files with 62 additions and 44 deletions

View File

@@ -137,7 +137,7 @@ export function useGridColumns<T = InfraApiErrorLogApi.SystemApiErrorLog>(
name: 'CellOperation',
options: [
{
code: 'view',
code: 'detail',
text: '详情',
show: hasAccessByCodes(['infra:api-error-log:query']),
},

View File

@@ -33,7 +33,7 @@ async function onExport() {
}
/** 查看 API 错误日志详情 */
function onView(row: InfraApiErrorLogApi.SystemApiErrorLog) {
function onDetail(row: InfraApiErrorLogApi.SystemApiErrorLog) {
detailModalApi.setData(row).open();
}
@@ -49,7 +49,7 @@ async function onProcess(id: number, processStatus: number) {
content: $t('ui.actionMessage.operationSuccess'),
key: 'action_process_msg',
});
await onRefresh();
onRefresh();
}
});
}
@@ -60,8 +60,8 @@ function onActionClick({
row,
}: OnActionClickParams<InfraApiErrorLogApi.SystemApiErrorLog>) {
switch (code) {
case 'view': {
onView(row);
case 'detail': {
onDetail(row);
break;
}
case 'done': {