提示英文优化

This commit is contained in:
‘huanghaiixia’
2026-03-27 14:59:14 +08:00
parent 44cc5f0d3d
commit 7377464207
166 changed files with 372 additions and 372 deletions

View File

@ -228,7 +228,7 @@ const logPath = ref('/mdm/bank/datalog');
function handleEnable() {
if (!selectedKeys.value.length) {
notification.warning({
message: 'Tip',
message: '提示',
description: t('请选择需要启用的数据'),
});
return;
@ -245,7 +245,7 @@ const logPath = ref('/mdm/bank/datalog');
enableLngBBank(ids).then((_) => {
handleSuccess();
notification.success({
message: 'Tip',
message: '提示',
description: t('启用成功!'),
});
});
@ -257,7 +257,7 @@ const logPath = ref('/mdm/bank/datalog');
function handleDisable() {
if (!selectedKeys.value.length) {
notification.warning({
message: 'Tip',
message: '提示',
description: t('请选择需要禁用的数据'),
});
return;
@ -273,7 +273,7 @@ const logPath = ref('/mdm/bank/datalog');
disableLngBBank(ids).then((_) => {
handleSuccess();
notification.success({
message: 'Tip',
message: '提示',
description: t('禁用成功!'),
});
});
@ -292,7 +292,7 @@ const logPath = ref('/mdm/bank/datalog');
deleteLngBBank(ids).then((_) => {
handleSuccess();
notification.success({
message: 'Tip',
message: '提示',
description: t('删除成功!'),
});
});