From b4227b5145943e067351a2a59ca34826b41d6fb7 Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期二, 15 四月 2025 09:46:30 +0800
Subject: [PATCH] 界面翻译为俄语

---
 src/main/webapp/static/js/staDesc/staDesc.js |  151 +++++++++++++++++++++++--------------------------
 1 files changed, 71 insertions(+), 80 deletions(-)

diff --git a/src/main/webapp/static/js/staDesc/staDesc.js b/src/main/webapp/static/js/staDesc/staDesc.js
index d79b546..6ef09a9 100644
--- a/src/main/webapp/static/js/staDesc/staDesc.js
+++ b/src/main/webapp/static/js/staDesc/staDesc.js
@@ -10,9 +10,10 @@
     tableIns = table.render({
         elem: '#staDesc',
         headers: {token: localStorage.getItem('token')},
-        url: '/staDesc/list/auth',
+        url: baseUrl+'/staDesc/list/auth',
         page: true,
         limit: 16,
+        limits: [16, 30, 50, 100, 200, 500],
         even: true,
         toolbar: '#toolbar',
         cellMinWidth: 50,
@@ -20,19 +21,19 @@
             {type: 'checkbox'}
 //            ,{field: 'id', title: 'ID', sort: true,align: 'center', fixed: 'left', width: 80}
 //             ,{field: 'typeId', align: 'center',title: '璺緞ID'}
-            ,{field: 'typeNo$', align: 'center',title: '鍏ュ嚭搴撶被鍨�'}
+            ,{field: 'typeNo$', align: 'center',title: '孝懈锌 锌芯褋褌褍锌谢械薪懈褟/胁褘胁芯蟹邪 褋芯 褋泻谢邪写邪'}
             // ,{field: 'typeDesc', align: 'center',title: '浣滀笟绫诲瀷'}
-            ,{field: 'stnNo$', align: 'center',title: '浣滀笟绔欑偣',event: 'stnNo', style: 'cursor:pointer'}
-            ,{field: 'stnDesc', align: 'center',title: '绔欑偣鍚嶇О'}
-            ,{field: 'crnNo$', align: 'center',title: '鍫嗗灈鏈哄彿',event: 'crnNo', style: 'cursor:pointer'}
-            ,{field: 'crnStn$', align: 'center',title: '鍫嗗灈鏈虹珯鐐�',event: 'crnStn', style: 'cursor:pointer'}
-            ,{field: 'memo', align: 'center',title: '澶囨敞'}
-            // ,{field: 'modiUser$', align: 'center',title: '淇敼浜哄憳',event: 'modiUser', style: 'cursor:pointer'}
-            // ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿'}
+            ,{field: 'stnNo$', align: 'center',title: '袪邪斜芯褔邪褟 褋褌邪薪褑懈褟'}
+            ,{field: 'stnDesc', align: 'center',title: '袧邪蟹胁邪薪懈械 褋褌邪薪褑懈懈', edit:'text'}
+            ,{field: 'crnNo$', align: 'center',title: '袧芯屑械褉 褕褌邪斜械谢械褉邪'}
+            ,{field: 'crnStn$', align: 'center',title: '小褌邪薪褑懈褟 褕褌邪斜械谢械褉邪'}
+            ,{field: 'memo', align: 'center',title: '袩褉懈屑械褔邪薪懈械'}
+            ,{field: 'modiUser$', align: 'center',title: '袪械写邪泻褌懈褉芯胁邪谢', hide:true}
+            ,{field: 'modiTime$', align: 'center',title: '袙褉械屑褟 褉械写邪泻褌懈褉芯胁邪薪懈褟', hide:true}
             // ,{field: 'appeUser$', align: 'center',title: '鍒涘缓鑰�',event: 'appeUser', style: 'cursor:pointer'}
             // ,{field: 'appeTime$', align: 'center',title: '娣诲姞鏃堕棿'}
 
-            ,{fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width:150}
+            ,{fixed: 'right', title:'袨锌械褉邪褑懈褟', align: 'center', toolbar: '#operate', width:150}
         ]],
         request: {
             pageName: 'curr',
@@ -51,7 +52,7 @@
         },
         done: function(res, curr, count) {
             if (res.code === 403) {
-                top.location.href = "/";
+                top.location.href = baseUrl+"/";
             }
             pageCurr=curr;
             limit();
@@ -64,6 +65,33 @@
                 }
             });
         }
+    });
+
+    // 椤甸潰淇敼
+    table.on('edit(staDesc)', function (obj) {
+        layer.confirm('淇濆瓨淇敼?', function(){
+            $.ajax({
+                url: baseUrl+"/staDesc/update/auth",
+                headers: {'token': localStorage.getItem('token')},
+                data: top.reObject({
+                    typeId: obj.data.typeId,
+                    stnDesc: obj.value,
+                    memo: obj.data.memo
+                }),
+                method: 'POST',
+                async: false,
+                success: function (res) {
+                    layer.closeAll();
+                    if (res.code === 200){
+                        $(".layui-laypage-btn")[0].click();
+                    } else if (res.code === 403){
+                        top.location.href = baseUrl+"/";
+                    }else {
+                        layer.msg(res.msg)
+                    }
+                }
+            })
+        });
     });
 
     // 鐩戝惉鎺掑簭浜嬩欢
@@ -81,7 +109,7 @@
             },
             done: function (res, curr, count) {
                 if (res.code === 403) {
-                    top.location.href = "/";
+                    top.location.href = baseUrl+"/";
                 }
                 pageCurr=curr;
                 limit();
@@ -96,9 +124,9 @@
             case 'addData':
                 layer.open({
                     type: 2,
-                    title: '鏂板',
+                    title: '袛芯斜邪胁懈褌褜',
                     maxmin: true,
-                    area: [top.detailWidth, top.detailHeight],
+                    area: ['40%', top.detailHeight],
                     shadeClose: false,
                     content: 'staDesc_detail.html',
                     success: function(layero, index){
@@ -119,11 +147,11 @@
             case 'deleteData':
                 var data = checkStatus.data;
                 if (data.length === 0){
-                    layer.msg('璇烽�夋嫨鏁版嵁');
+                    layer.msg('袩芯卸邪谢褍泄褋褌邪, 胁褘斜械褉懈褌械 写邪薪薪褘械');
                 } else {
-                    layer.confirm('纭畾鍒犻櫎'+(data.length===1?'姝�':data.length)+'鏉℃暟鎹悧', function(){
+                    layer.confirm(data.length === 1 ? '袩芯写褌胁械褉写懈褌褜 褍写邪谢械薪懈械?' : '校写邪谢懈褌褜 ' + data.length + ' 蟹邪锌懈褋懈?', function(){
                         $.ajax({
-                            url: "/staDesc/delete/auth",
+                            url: baseUrl+"/staDesc/delete/auth",
                             headers: {'token': localStorage.getItem('token')},
                             data: {param: JSON.stringify(data)},
                             method: 'POST',
@@ -133,7 +161,7 @@
                                     layer.closeAll();
                                     tableReload(false);
                                 } else if (res.code === 403){
-                                    top.location.href = "/";
+                                    top.location.href = baseUrl+"/";
                                 } else {
                                     layer.msg(res.msg)
                                 }
@@ -143,7 +171,7 @@
                 }
                 break;
             case 'exportData':
-                layer.confirm('纭畾瀵煎嚭Excel鍚�', function(){
+                layer.confirm('袩芯写褌胁械褉写懈褌褜 褝泻褋锌芯褉褌 胁 Excel?', {shadeClose: true}, function(){
                     var titles=[];
                     var fields=[];
                     obj.config.cols[0].map(function (col) {
@@ -161,7 +189,7 @@
                         'fields': fields
                     };
                     $.ajax({
-                        url: "/staDesc/export/auth",
+                        url: baseUrl+"/staDesc/export/auth",
                         headers: {'token': localStorage.getItem('token')},
                         data: JSON.stringify(param),
                         dataType:'json',
@@ -172,7 +200,7 @@
                             if (res.code === 200) {
                                 table.exportFile(titles,res.data,'xls');
                             } else if (res.code === 403) {
-                                top.location.href = "/";
+                                top.location.href = baseUrl+"/";
                             } else {
                                 layer.msg(res.msg)
                             }
@@ -191,10 +219,10 @@
             case 'detail':
                 layer.open({
                     type: 2,
-                    title: '璇︽儏',
+                    title: '袛械褌邪谢懈',
                     maxmin: true,
                     area: [top.detailWidth, top.detailHeight],
-                    shadeClose: false,
+                    shadeClose: true,
                     content: 'staDesc_detail.html',
                     success: function(layero, index){
                         setFormVal(layer.getChildFrame('#detail', index), data, true);
@@ -210,9 +238,9 @@
             case 'edit':
                 layer.open({
                     type: 2,
-                    title: '淇敼',
+                    title: '袠蟹屑械薪懈褌褜',
                     maxmin: true,
-                    area: [top.detailWidth, top.detailHeight],
+                    area: ['40%', top.detailHeight],
                     shadeClose: false,
                     content: 'staDesc_detail.html',
                     success: function(layero, index){
@@ -229,18 +257,18 @@
             case 'typeNo':
                 var param = top.reObject(data).typeNo;
                 if (param === undefined) {
-                    layer.msg("鏃犳暟鎹�");
+                    layer.msg("袧械褌 写邪薪薪褘褏");
                 } else {
                    layer.open({
                        type: 2,
                        title: '鍏ュ嚭搴撹鎯�',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basWrkIotype/basWrkIotype_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basWrkIotype/"+ param +"/auth",
+                               url: baseUrl+"/basWrkIotype/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -265,18 +293,18 @@
             case 'stnNo':
                 var param = top.reObject(data).stnNo;
                 if (param === undefined) {
-                    layer.msg("鏃犳暟鎹�");
+                    layer.msg("袧械褌 写邪薪薪褘褏");
                 } else {
                    layer.open({
                        type: 2,
                        title: '浣滀笟璇︽儏',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basDevp/basDevp_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basDevp/"+ param +"/auth",
+                               url: baseUrl+"/basDevp/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -301,18 +329,18 @@
             case 'crnNo':
                 var param = top.reObject(data).crnNo;
                 if (param === undefined) {
-                    layer.msg("鏃犳暟鎹�");
+                    layer.msg("袧械褌 写邪薪薪褘褏");
                 } else {
                    layer.open({
                        type: 2,
                        title: '鍫嗗灈鏈鸿鎯�',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basCrnp/basCrnp_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basCrnp/"+ param +"/auth",
+                               url: baseUrl+"/basCrnp/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -337,18 +365,18 @@
             case 'crnStn':
                 var param = top.reObject(data).crnStn;
                 if (param === undefined) {
-                    layer.msg("鏃犳暟鎹�");
+                    layer.msg("袧械褌 写邪薪薪褘褏");
                 } else {
                    layer.open({
                        type: 2,
                        title: '鍫嗗灈鏈虹珯鐐硅鎯�',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basDevp/basDevp_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basDevp/"+ param +"/auth",
+                               url: baseUrl+"/basDevp/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -373,18 +401,18 @@
             case 'modiUser':
                 var param = top.reObject(data).modiUser;
                 if (param === undefined) {
-                    layer.msg("鏃犳暟鎹�");
+                    layer.msg("袧械褌 写邪薪薪褘褏");
                 } else {
                    layer.open({
                        type: 2,
                        title: '淇敼璇︽儏',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../user/user_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/user/"+ param +"/auth",
+                               url: baseUrl+"/user/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -406,43 +434,6 @@
                    });
                 }
                 break;
-            case 'appeUser':
-                var param = top.reObject(data).appeUser;
-                if (param === undefined) {
-                    layer.msg("鏃犳暟鎹�");
-                } else {
-                   layer.open({
-                       type: 2,
-                       title: '鍒涜鎯�',
-                       maxmin: true,
-                       area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
-                       content: '../user/user_detail.html',
-                       success: function(layero, index){
-                           $.ajax({
-                               url: "/user/"+ param +"/auth",
-                               headers: {'token': localStorage.getItem('token')},
-                               method: 'GET',
-                               success: function (res) {
-                                   if (res.code === 200){
-                                       setFormVal(layer.getChildFrame('#detail', index), res.data, true);
-                                       top.convertDisabled(layer.getChildFrame('#data-detail :input', index), true);
-                                       layer.getChildFrame('#data-detail-submit-save,#data-detail-submit-edit,#prompt', index).hide();
-                                       layer.iframeAuto(index);layer.style(index, {top: (($(window).height()-layer.getChildFrame('#data-detail', index).height())/3)+"px"});
-                                       layero.find('iframe')[0].contentWindow.layui.form.render('select');
-                                       layero.find('iframe')[0].contentWindow.layui.form.render('checkbox');
-                                   } else if (res.code === 403){
-                                       parent.location.href = "/";
-                                   }else {
-                                       layer.msg(res.msg)
-                                   }
-                               }
-                           })
-                       }
-                   });
-                }
-                break;
-
         }
     });
 
@@ -481,7 +472,7 @@
 
         };
         $.ajax({
-            url: "/staDesc/"+name+"/auth",
+            url: baseUrl+"/staDesc/"+name+"/auth",
             headers: {'token': localStorage.getItem('token')},
             data: top.reObject(data),
             method: 'POST',
@@ -493,7 +484,7 @@
                         $(this).val("");
                     });
                 } else if (res.code === 403){
-                    top.location.href = "/";
+                    top.location.href = baseUrl+"/";
                 }else {
                     layer.msg(res.msg)
                 }
@@ -555,7 +546,7 @@
         },
         done: function (res, curr, count) {
             if (res.code === 403) {
-                top.location.href = "/";
+                top.location.href = baseUrl+"/";
             }
             pageCurr=curr;
             if (res.data.length === 0 && count !== 0) {

--
Gitblit v1.9.1