fix: 多语言删除无用定义

This commit is contained in:
TsMask
2024-12-18 15:37:21 +08:00
parent 8a53ac8b9f
commit 9bff669769
11 changed files with 98 additions and 1665 deletions

View File

@@ -391,9 +391,7 @@ function fnRecordRun(row: Record<string, any>) {
threRun(row).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
content: t('common.msgSuccess', {
msg: t('views.configManage.softwareManage.runBtn'),
}),
content: 'Run',
key,
duration: 2,
});
@@ -610,7 +608,7 @@ onMounted(() => {
<a-space :size="8" align="center">
<a-tooltip>
<template #title>
{{ t('views.configManage.softwareManage.runBtn') }}
Run
</template>
<a-button
type="link"

View File

@@ -616,9 +616,7 @@ function fnRecordRun(row: Record<string, any>) {
taskRun(row).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
content: t('common.msgSuccess', {
msg: t('views.configManage.softwareManage.runBtn'),
}),
content: 'Run',
key,
duration: 2,
});
@@ -861,7 +859,7 @@ onMounted(() => {
>
<a-menu-item key="run">
<ThunderboltOutlined />
{{ t('views.configManage.softwareManage.runBtn') }}
Run
</a-menu-item>
<a-menu-item key="stop">
<UndoOutlined />