---用户管理,网元管理等中英文

This commit is contained in:
lai
2023-11-08 11:21:39 +08:00
parent 8e467b95a2
commit 1bc9358d30
37 changed files with 582 additions and 404 deletions

View File

@@ -151,7 +151,7 @@ function fnTableSize({ key }: MenuInfo) {
/**信息文件下载 */
function fnDownloadFile(row: Record<string, any>) {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认下载记录编号为 【${row.id}】 的数据项文件?`,
onOk() {
const key = 'downloadNeBackup';
@@ -182,11 +182,11 @@ function fnDownloadFile(row: Record<string, any>) {
*/
function fnRecordDelete(row: Record<string, any>) {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认删除记录编号为 【${row.id}】 的数据项?`,
onOk() {
const key = 'delNeBackup';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
delNeBackup(toRaw(row)).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({