From 539a56279625242c497b4b4093f2defbb9d80334 Mon Sep 17 00:00:00 2001
From: lty <876263681@qq.com>
Date: 星期四, 29 一月 2026 14:05:44 +0800
Subject: [PATCH] #i18n翻译
---
src/main/webapp/views/tag/tag.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/webapp/views/tag/tag.html b/src/main/webapp/views/tag/tag.html
index e4c2d03..2bb0ac6 100644
--- a/src/main/webapp/views/tag/tag.html
+++ b/src/main/webapp/views/tag/tag.html
@@ -249,7 +249,7 @@
layer.close(loadIndex);
if (res.code === 200){
layer.close(dIndex);
- layer.msg(res.msg, {icon: 1});
+ layer.msg(typeof I18n !== 'undefined' ? I18n.t('response.operation_success') : '鎿嶄綔鎴愬姛', {icon: 1});
insTb.refresh();
} else if (res.code === 403){
top.location.href = baseUrl+"/";
@@ -315,7 +315,7 @@
success: function (res) {
layer.close(loadIndex);
if (res.code === 200){
- layer.msg(res.msg, {icon: 1});
+ layer.msg(typeof I18n !== 'undefined' ? I18n.t('response.operation_success') : '鎿嶄綔鎴愬姛', {icon: 1});
insTb.refresh();
} else if (res.code === 403){
top.location.href = baseUrl+"/";
--
Gitblit v1.9.1