This commit is contained in:
xingyu4j
2025-10-11 10:56:12 +08:00
parent 28566a659f
commit a156873437
30 changed files with 471 additions and 501 deletions

View File

@@ -154,7 +154,7 @@ async function handleDelete(row: any) {
});
try {
await deleteDevice(row.id);
message.success($t('common.delSuccess'));
message.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh();
} finally {
hideLoading();
@@ -175,7 +175,7 @@ async function handleDeleteBatch() {
try {
const ids = checkedRows.map((row: any) => row.id);
await deleteDeviceList(ids);
message.success($t('common.delSuccess'));
message.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh();
} finally {
hideLoading();