From 35b1b26f1fe16550b4ee2881a26d599456fe59b4 Mon Sep 17 00:00:00 2001
From: lty <876263681@qq.com>
Date: 星期四, 22 一月 2026 17:01:11 +0800
Subject: [PATCH] #i18n翻译
---
src/main/webapp/static/js/wrkDetl/wrkDetl.js | 137 +++++++++++++++++++++++++++++++++++----------
1 files changed, 107 insertions(+), 30 deletions(-)
diff --git a/src/main/webapp/static/js/wrkDetl/wrkDetl.js b/src/main/webapp/static/js/wrkDetl/wrkDetl.js
index cf5dd90..332f4fd 100644
--- a/src/main/webapp/static/js/wrkDetl/wrkDetl.js
+++ b/src/main/webapp/static/js/wrkDetl/wrkDetl.js
@@ -1,21 +1,101 @@
var pageCurr;
function getCol() {
var cols = [
- {field: 'wrkNo', align: 'center',title: '宸ヤ綔鍙�'}
- ,{field: 'ioTime$', align: 'center',title: '宸ヤ綔鏃堕棿', width: 160}
+ {field: 'wrkNo', align: 'center',title: I18n.t('work_no')}
+ ,{field: 'ioTime$', align: 'center',title: I18n.t('work_time'), width: 160}
];
- cols.push.apply(cols, detlCols);
- cols.push({field: 'modiUser$', align: 'center',title: '淇敼浜哄憳', hide:true}
- ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿', hide:true})
+ if (typeof getDetlCols === 'function') {
+ cols.push.apply(cols, getDetlCols());
+ } else {
+ cols.push.apply(cols, detlCols);
+ }
+ cols.push({field: 'modiUser$', align: 'center',title: I18n.t('modifier'), hide:true}
+ ,{field: 'modiTime$', align: 'center',title: I18n.t('modify_time'), hide:true})
return cols;
}
+function updatePagination() {
+ if (typeof I18n === 'undefined') return;
+ // Update 'Total X items'
+ $('.layui-laypage-count').each(function() {
+ var text = $(this).text();
+ var count = text.match(/\d+/);
+ if (count) {
+ $(this).text(I18n.t('total_prefix') + count[0] + I18n.t('total_suffix'));
+ }
+ });
+
+ // Update 'Go to [input] page [button]'
+ $('.layui-laypage-skip').each(function() {
+ var $this = $(this);
+ // Replace "鍒扮" (First text node)
+ var contents = $this.contents();
+ for (var i = 0; i < contents.length; i++) {
+ if (contents[i].nodeType === 3 && contents[i].textContent.trim() !== '') {
+ // Assuming the first non-empty text node is "鍒扮"
+ contents[i].textContent = I18n.t('jump_to');
+ break;
+ }
+ }
+
+ // Replace "椤�" (Text node after input)
+ var input = $this.find('.layui-input');
+ if (input.length) {
+ var nextNode = input[0].nextSibling;
+ if (nextNode && nextNode.nodeType === 3) {
+ nextNode.textContent = I18n.t('page');
+ }
+ }
+
+ // Replace Button text
+ var btn = $this.find('.layui-laypage-btn');
+ if (btn.length) {
+ btn.text(I18n.t('confirm'));
+ }
+ });
+
+ // Update 'X items/page'
+ $('.layui-laypage-limits select option').each(function() {
+ var text = $(this).text();
+ var limit = text.match(/\d+/);
+ if (limit) {
+ $(this).text(limit[0] + I18n.t('items_per_page'));
+ }
+ });
+}
layui.use(['table','laydate', 'form'], function(){
var table = layui.table;
var $ = layui.jquery;
var layer = layui.layer;
var layDate = layui.laydate;
var form = layui.form;
+
+ var doneCallback = function(res, curr, count) {
+ if (res.code === 403) {
+ top.location.href = baseUrl+"/";
+ }
+ pageCurr=curr;
+ limit();
+ form.on('checkbox(tableCheckbox)', function (data) {
+ var _index = $(data.elem).attr('table-index')||0;
+ if(data.elem.checked){
+ res.data[_index][data.value] = 'Y';
+ }else{
+ res.data[_index][data.value] = 'N';
+ }
+ });
+ if (typeof I18n !== 'undefined') {
+ I18n.updatePage($('.layui-table-view'));
+ updatePagination();
+ }
+ };
+
+ $(document).on('i18n:updated', function() {
+ tableIns.reload({
+ cols: [getCol()],
+ done: doneCallback
+ });
+ });
// 鏁版嵁娓叉煋
tableIns = table.render({
@@ -44,21 +124,7 @@
response: {
statusCode: 200
},
- done: function(res, curr, count) {
- if (res.code === 403) {
- top.location.href = baseUrl+"/";
- }
- pageCurr=curr;
- limit();
- form.on('checkbox(tableCheckbox)', function (data) {
- var _index = $(data.elem).attr('table-index')||0;
- if(data.elem.checked){
- res.data[_index][data.value] = 'Y';
- }else{
- res.data[_index][data.value] = 'N';
- }
- });
- }
+ done: doneCallback
});
// 鐩戝惉鎺掑簭浜嬩欢
@@ -78,6 +144,10 @@
if (res.code === 403) {
top.location.href = baseUrl+"/";
}
+ if (typeof I18n !== 'undefined') {
+ I18n.updatePage($('.layui-table-view'));
+ updatePagination();
+ }
pageCurr=curr;
limit();
}
@@ -91,7 +161,7 @@
case 'addData':
layer.open({
type: 2,
- title: '鏂板',
+ title: I18n.t('add'),
maxmin: true,
area: [top.detailWidth, top.detailHeight],
shadeClose: false,
@@ -114,9 +184,9 @@
case 'deleteData':
var data = checkStatus.data;
if (data.length === 0){
- layer.msg('璇烽�夋嫨鏁版嵁');
+ layer.msg(I18n.t('please_select_data'));
} else {
- layer.confirm('纭畾鍒犻櫎'+(data.length===1?'姝�':data.length)+'鏉℃暟鎹悧', function(){
+ layer.confirm(I18n.t('confirm_delete_prefix')+(data.length===1?I18n.t('this'):data.length)+I18n.t('confirm_delete_suffix'), function(){
$.ajax({
url: baseUrl+"/wrkDetl/delete/auth",
headers: {'token': localStorage.getItem('token')},
@@ -138,7 +208,10 @@
}
break;
case 'exportData':
- layer.confirm('纭畾瀵煎嚭Excel鍚�', {shadeClose: true}, function(){
+ layer.confirm(I18n.t('confirm_export_excel'), {shadeClose: true,
+ title: typeof I18n !== 'undefined' ? I18n.t('prompt') : '鎻愮ず',
+ btn: [typeof I18n !== 'undefined' ? I18n.t('confirm') : '纭畾', typeof I18n !== 'undefined' ? I18n.t('cancel') : '鍙栨秷']
+ }, function(){
var titles=[];
var fields=[];
obj.config.cols[0].map(function (col) {
@@ -186,7 +259,7 @@
case 'detail':
layer.open({
type: 2,
- title: '璇︽儏',
+ title: I18n.t('detail'),
maxmin: true,
area: [top.detailWidth, top.detailHeight],
shadeClose: true,
@@ -205,7 +278,7 @@
case 'edit':
layer.open({
type: 2,
- title: '淇敼',
+ title: I18n.t('modify'),
maxmin: true,
area: [top.detailWidth, top.detailHeight],
shadeClose: false,
@@ -224,11 +297,11 @@
case 'modiUser':
var param = top.reObject(data).modiUser;
if (param === undefined) {
- layer.msg("鏃犳暟鎹�");
+ layer.msg(I18n.t('no_data_found'));
} else {
layer.open({
type: 2,
- title: '淇敼浜哄憳璇︽儏',
+ title: I18n.t('modifier_detail'),
maxmin: true,
area: [top.detailWidth, top.detailHeight],
shadeClose: false,
@@ -260,11 +333,11 @@
case 'appeUser':
var param = top.reObject(data).appeUser;
if (param === undefined) {
- layer.msg("鏃犳暟鎹�");
+ layer.msg(I18n.t('no_data_found'));
} else {
layer.open({
type: 2,
- title: '鍒涘缓鑰呰鎯�',
+ title: I18n.t('creator_detail'),
maxmin: true,
area: [top.detailWidth, top.detailHeight],
shadeClose: false,
@@ -423,6 +496,10 @@
if (res.code === 403) {
top.location.href = baseUrl+"/";
}
+ if (typeof I18n !== 'undefined') {
+ I18n.updatePage($('.layui-table-view'));
+ updatePagination();
+ }
pageCurr=curr;
if (res.data.length === 0 && count !== 0) {
tableIns.reload({
--
Gitblit v1.9.1