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/static/js/report/reportStockUse.js | 52 +++++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 41 insertions(+), 11 deletions(-)
diff --git a/src/main/webapp/static/js/report/reportStockUse.js b/src/main/webapp/static/js/report/reportStockUse.js
index 414dde2..c5d8e6a 100644
--- a/src/main/webapp/static/js/report/reportStockUse.js
+++ b/src/main/webapp/static/js/report/reportStockUse.js
@@ -17,17 +17,10 @@
limits: [16, 30, 50, 100, 200, 500],
toolbar: '#toolbar',
cellMinWidth: 50,
- cols: [[
- // {type: 'checkbox', fixed: 'left'}
- {field: 'row1', title: '閽㈡灦鍙�', sort: true, align: 'center'}
- ,{field: 'total_qty', align: 'center',title: '搴撲綅鎬绘暟'}
- ,{field: 'full_qty', align: 'center',title: '鍦ㄥ簱鏁伴噺'}
- ,{field: 'null_qty', align: 'center',title: '绌哄簱浣嶆暟閲�'}
- ,{field: 'forbid_qty', align: 'center',title: '绂佺敤搴撲綅鏁伴噺'}
- ,{field: 'empty_qty', align: 'center',title: '绌哄鍣ㄦ暟閲�'}
- ,{field: 'full_rate', align: 'center',title: '鍦ㄥ簱鐜�(%)'}
- ,{field: 'occ_rate', align: 'center',title: '浣跨敤鐜�(%)'}
- ]],
+ cols: getCols(),
+ text: {
+ none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '鏆傛棤鐩稿叧鏁版嵁'
+ },
request: {
pageName: 'curr',
pageSize: 'limit'
@@ -49,6 +42,8 @@
}
pageCurr=curr;
limit();
+ I18n.updatePage();
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
}
});
@@ -71,6 +66,40 @@
}
pageCurr=curr;
limit();
+ I18n.updatePage();
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
+ }
+ });
+ });
+
+ function getCols() {
+ return [[
+ // {type: 'checkbox', fixed: 'left'}
+ {field: 'row1', title: I18n.t('rack_no'), sort: true, align: 'center'}
+ ,{field: 'total_qty', align: 'center',title: I18n.t('total_loc_qty')}
+ ,{field: 'full_qty', align: 'center',title: I18n.t('stock_qty')}
+ ,{field: 'null_qty', align: 'center',title: I18n.t('empty_loc_qty')}
+ ,{field: 'forbid_qty', align: 'center',title: I18n.t('disabled_loc_qty')}
+ ,{field: 'empty_qty', align: 'center',title: I18n.t('empty_container_qty')}
+ ,{field: 'full_rate', align: 'center',title: I18n.t('stock_rate')}
+ ,{field: 'occ_rate', align: 'center',title: I18n.t('usage_rate')}
+ ]];
+ }
+
+ $(document).on('i18n:languageChanged', function () {
+ I18n.updatePage();
+ tableIns.reload({
+ cols: getCols(),
+ text: {
+ none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '鏆傛棤鐩稿叧鏁版嵁'
+ },
+ done: function (res, curr, count) {
+ if (res.code === 403) {
+ top.location.href = baseUrl+"/";
+ }
+ pageCurr=curr;
+ limit();
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
}
});
});
@@ -147,6 +176,7 @@
pageCurr -= 1;
}
limit(child);
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
}
});
}
--
Gitblit v1.9.1