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/pda/stockIn.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/webapp/views/pda/stockIn.html b/src/main/webapp/views/pda/stockIn.html
index 9384793..f6547ec 100644
--- a/src/main/webapp/views/pda/stockIn.html
+++ b/src/main/webapp/views/pda/stockIn.html
@@ -282,11 +282,11 @@
success: function (res) {
if (res.code === 200) {
reset();
- tips("绌烘澘鍏ュ簱鍚姩鎴愬姛")
+ tips(typeof I18n !== 'undefined' ? I18n.t(res.msg) : res.msg)
} else if (res.code === 403) {
top.location.href = baseUrl + "/pda";
} else {
- tips(res.msg, true)
+ tips(typeof I18n !== 'undefined' ? I18n.t(res.msg) : res.msg, true)
}
}
})
--
Gitblit v1.9.1