From 4c05b048892021c49bc40b63ef7169f2f5fb1237 Mon Sep 17 00:00:00 2001 From: RuoYi Date: Thu, 24 May 2018 12:55:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/static/ruoyi/monitor/job/job.js | 8 ++++---- .../resources/static/ruoyi/monitor/job/jobLog.js | 2 +- .../resources/static/ruoyi/monitor/online/online.js | 2 +- .../static/ruoyi/monitor/operlog/operlog.js | 2 +- .../resources/static/ruoyi/system/config/config.js | 4 ++-- src/main/resources/static/ruoyi/system/dept/dept.js | 2 +- .../resources/static/ruoyi/system/dict/data/data.js | 4 ++-- .../resources/static/ruoyi/system/dict/type/type.js | 6 +++--- src/main/resources/static/ruoyi/system/menu/menu.js | 4 ++-- src/main/resources/static/ruoyi/system/post/post.js | 4 ++-- src/main/resources/static/ruoyi/system/role/role.js | 4 ++-- src/main/resources/static/ruoyi/system/user/user.js | 6 +++--- src/main/resources/static/ruoyi/tool/gen/gen.js | 2 +- src/main/resources/templates/monitor/job/job.html | 12 ++++++------ src/main/resources/templates/monitor/job/jobLog.html | 6 +++--- .../templates/monitor/logininfor/logininfor.html | 4 ++-- .../resources/templates/monitor/online/online.html | 4 ++-- .../resources/templates/monitor/operlog/operlog.html | 4 ++-- .../resources/templates/system/config/config.html | 12 ++++++------ src/main/resources/templates/system/dept/dept.html | 4 ++-- .../resources/templates/system/dict/data/data.html | 9 ++++----- .../resources/templates/system/dict/type/type.html | 8 ++++---- src/main/resources/templates/system/menu/menu.html | 4 ++-- src/main/resources/templates/system/post/post.html | 8 ++++---- src/main/resources/templates/system/role/role.html | 8 ++++---- src/main/resources/templates/system/user/user.html | 8 ++++---- src/main/resources/templates/tool/gen/gen.html | 4 ++-- 27 files changed, 72 insertions(+), 73 deletions(-) diff --git a/src/main/resources/static/ruoyi/monitor/job/job.js b/src/main/resources/static/ruoyi/monitor/job/job.js index 05e694eb..36a1ad65 100644 --- a/src/main/resources/static/ruoyi/monitor/job/job.js +++ b/src/main/resources/static/ruoyi/monitor/job/job.js @@ -50,8 +50,8 @@ $(function() { formatter: function(value, row, index) { var actions = []; actions.push(statusTools(row)); - actions.push(' '); - actions.push(''); + actions.push('编辑 '); + actions.push('删除'); return actions.join(''); } }]; @@ -61,9 +61,9 @@ $(function() { function statusTools(row) { if (row.status == 1) { - return ' '; + return '启用 '; } else { - return ' '; + return '暂停 '; } } diff --git a/src/main/resources/static/ruoyi/monitor/job/jobLog.js b/src/main/resources/static/ruoyi/monitor/job/jobLog.js index ec53e162..914a37d2 100644 --- a/src/main/resources/static/ruoyi/monitor/job/jobLog.js +++ b/src/main/resources/static/ruoyi/monitor/job/jobLog.js @@ -49,7 +49,7 @@ $(function() { align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push(''); + actions.push('删除'); return actions.join(''); } }]; diff --git a/src/main/resources/static/ruoyi/monitor/online/online.js b/src/main/resources/static/ruoyi/monitor/online/online.js index bb00cc46..f0b3e68c 100644 --- a/src/main/resources/static/ruoyi/monitor/online/online.js +++ b/src/main/resources/static/ruoyi/monitor/online/online.js @@ -52,7 +52,7 @@ $(function() { title: '操作', align: 'center', formatter: function(value, row, index) { - var msg = ' '; + var msg = '强退 '; return msg; } }]; diff --git a/src/main/resources/static/ruoyi/monitor/operlog/operlog.js b/src/main/resources/static/ruoyi/monitor/operlog/operlog.js index b44b80d6..06e63488 100644 --- a/src/main/resources/static/ruoyi/monitor/operlog/operlog.js +++ b/src/main/resources/static/ruoyi/monitor/operlog/operlog.js @@ -49,7 +49,7 @@ $(function() { align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push(''); + actions.push('详细'); return actions.join(''); } }]; diff --git a/src/main/resources/static/ruoyi/system/config/config.js b/src/main/resources/static/ruoyi/system/config/config.js index 1ba1b995..ecc259bd 100644 --- a/src/main/resources/static/ruoyi/system/config/config.js +++ b/src/main/resources/static/ruoyi/system/config/config.js @@ -41,8 +41,8 @@ $(function() { align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push(' '); - actions.push(''); + actions.push('编辑 '); + actions.push('删除'); return actions.join(''); } }]; diff --git a/src/main/resources/static/ruoyi/system/dept/dept.js b/src/main/resources/static/ruoyi/system/dept/dept.js index e2cbc55e..699a0c84 100644 --- a/src/main/resources/static/ruoyi/system/dept/dept.js +++ b/src/main/resources/static/ruoyi/system/dept/dept.js @@ -18,7 +18,7 @@ function loading() { title : '状态', formatter : function(item, index) { if (item.status == '0') { - return '正常'; + return '正常'; } else if (item.status == '1') { return '停用'; } diff --git a/src/main/resources/static/ruoyi/system/dict/data/data.js b/src/main/resources/static/ruoyi/system/dict/data/data.js index 290521e6..25e6ff62 100644 --- a/src/main/resources/static/ruoyi/system/dict/data/data.js +++ b/src/main/resources/static/ruoyi/system/dict/data/data.js @@ -45,8 +45,8 @@ $(function() { align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push(' '); - actions.push(''); + actions.push('编辑 '); + actions.push('删除'); return actions.join(''); } }]; diff --git a/src/main/resources/static/ruoyi/system/dict/type/type.js b/src/main/resources/static/ruoyi/system/dict/type/type.js index 076f4ed8..40c678be 100644 --- a/src/main/resources/static/ruoyi/system/dict/type/type.js +++ b/src/main/resources/static/ruoyi/system/dict/type/type.js @@ -41,9 +41,9 @@ $(function() { align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push(' '); - actions.push(' '); - actions.push(''); + actions.push('编辑 '); + actions.push('列表 '); + actions.push('删除'); return actions.join(''); } }]; diff --git a/src/main/resources/static/ruoyi/system/menu/menu.js b/src/main/resources/static/ruoyi/system/menu/menu.js index 98bff73a..673adb34 100644 --- a/src/main/resources/static/ruoyi/system/menu/menu.js +++ b/src/main/resources/static/ruoyi/system/menu/menu.js @@ -34,10 +34,10 @@ function loading() { width : '10%', formatter : function(item, index) { if (item.menuType == 'M') { - return '目录'; + return '目录'; } if (item.menuType == 'C') { - return '菜单'; + return '菜单'; } if (item.menuType == 'F') { return '按钮'; diff --git a/src/main/resources/static/ruoyi/system/post/post.js b/src/main/resources/static/ruoyi/system/post/post.js index 970fc75b..dd5d8338 100644 --- a/src/main/resources/static/ruoyi/system/post/post.js +++ b/src/main/resources/static/ruoyi/system/post/post.js @@ -40,8 +40,8 @@ $(function() { align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push(' '); - actions.push(''); + actions.push('编辑 '); + actions.push('删除'); return actions.join(''); } }]; diff --git a/src/main/resources/static/ruoyi/system/role/role.js b/src/main/resources/static/ruoyi/system/role/role.js index dc7ecfb9..d7587812 100644 --- a/src/main/resources/static/ruoyi/system/role/role.js +++ b/src/main/resources/static/ruoyi/system/role/role.js @@ -41,8 +41,8 @@ $(function() { align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push(' '); - actions.push(''); + actions.push('编辑 '); + actions.push('删除'); return actions.join(''); } }]; diff --git a/src/main/resources/static/ruoyi/system/user/user.js b/src/main/resources/static/ruoyi/system/user/user.js index 62e35aed..9c33270b 100644 --- a/src/main/resources/static/ruoyi/system/user/user.js +++ b/src/main/resources/static/ruoyi/system/user/user.js @@ -53,9 +53,9 @@ function queryUserList() { formatter: function(value, row, index) { if(row.userType == "N") { var actions = []; - actions.push(' '); - actions.push(' '); - actions.push(''); + actions.push('编辑 '); + actions.push('删除 '); + actions.push('重置'); return actions.join(''); } else { return ""; diff --git a/src/main/resources/static/ruoyi/tool/gen/gen.js b/src/main/resources/static/ruoyi/tool/gen/gen.js index 81e7be02..7be4bd15 100644 --- a/src/main/resources/static/ruoyi/tool/gen/gen.js +++ b/src/main/resources/static/ruoyi/tool/gen/gen.js @@ -24,7 +24,7 @@ $(function() { title: '操作', align: 'center', formatter: function(value, row, index) { - var msg = ' '; + var msg = '生成代码 '; return msg; } }]; diff --git a/src/main/resources/templates/monitor/job/job.html b/src/main/resources/templates/monitor/job/job.html index 8b95633f..8fcbfdaa 100644 --- a/src/main/resources/templates/monitor/job/job.html +++ b/src/main/resources/templates/monitor/job/job.html @@ -6,14 +6,14 @@
diff --git a/src/main/resources/templates/monitor/logininfor/logininfor.html b/src/main/resources/templates/monitor/logininfor/logininfor.html index a186be27..bc1ea14f 100644 --- a/src/main/resources/templates/monitor/logininfor/logininfor.html +++ b/src/main/resources/templates/monitor/logininfor/logininfor.html @@ -6,8 +6,8 @@
diff --git a/src/main/resources/templates/monitor/operlog/operlog.html b/src/main/resources/templates/monitor/operlog/operlog.html index 001c16ef..c21347fc 100644 --- a/src/main/resources/templates/monitor/operlog/operlog.html +++ b/src/main/resources/templates/monitor/operlog/operlog.html @@ -6,8 +6,8 @@
diff --git a/src/main/resources/templates/system/config/config.html b/src/main/resources/templates/system/config/config.html index 769a03cc..44bb4f2b 100644 --- a/src/main/resources/templates/system/config/config.html +++ b/src/main/resources/templates/system/config/config.html @@ -5,12 +5,12 @@
diff --git a/src/main/resources/templates/system/dept/dept.html b/src/main/resources/templates/system/dept/dept.html index ddddef35..d32b7b82 100644 --- a/src/main/resources/templates/system/dept/dept.html +++ b/src/main/resources/templates/system/dept/dept.html @@ -2,12 +2,12 @@ - +
diff --git a/src/main/resources/templates/system/dict/data/data.html b/src/main/resources/templates/system/dict/data/data.html index 50e25a1c..f1331c49 100644 --- a/src/main/resources/templates/system/dict/data/data.html +++ b/src/main/resources/templates/system/dict/data/data.html @@ -5,14 +5,13 @@
- diff --git a/src/main/resources/templates/system/dict/type/type.html b/src/main/resources/templates/system/dict/type/type.html index a41d8814..74955a9f 100644 --- a/src/main/resources/templates/system/dict/type/type.html +++ b/src/main/resources/templates/system/dict/type/type.html @@ -6,11 +6,11 @@
diff --git a/src/main/resources/templates/system/menu/menu.html b/src/main/resources/templates/system/menu/menu.html index 0b5e1d17..2b3d0b9a 100644 --- a/src/main/resources/templates/system/menu/menu.html +++ b/src/main/resources/templates/system/menu/menu.html @@ -2,12 +2,12 @@ - +
diff --git a/src/main/resources/templates/system/post/post.html b/src/main/resources/templates/system/post/post.html index fd1a585f..b1668814 100644 --- a/src/main/resources/templates/system/post/post.html +++ b/src/main/resources/templates/system/post/post.html @@ -6,11 +6,11 @@
diff --git a/src/main/resources/templates/tool/gen/gen.html b/src/main/resources/templates/tool/gen/gen.html index bf3bd39c..aaef96f0 100644 --- a/src/main/resources/templates/tool/gen/gen.html +++ b/src/main/resources/templates/tool/gen/gen.html @@ -5,8 +5,8 @@