diff --git a/src/main/resources/static/ruoyi/monitor/job/job.js b/src/main/resources/static/ruoyi/monitor/job/job.js index 05e694eba..36a1ad65b 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 ec53e162b..914a37d22 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 bb00cc46c..f0b3e68c0 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 b44b80d66..06e634883 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 1ba1b995f..ecc259bd3 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 e2cbc55e9..699a0c849 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 290521e6d..25e6ff62e 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 076f4ed85..40c678be1 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 98bff73ad..673adb343 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 970fc75b6..dd5d8338b 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 dc7ecfb96..d75878121 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 62e35aed3..9c33270bf 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 81e7be022..7be4bd153 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 8b95633f8..8fcbfdaa0 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 a186be27b..bc1ea14f2 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 001c16ef7..c21347fc7 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 769a03cc4..44bb4f2ba 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 ddddef354..d32b7b821 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 50e25a1c8..f1331c49b 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 a41d8814d..74955a9fa 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 0b5e1d17a..2b3d0b9a1 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 fd1a585f3..b16688145 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 bf3bd39c2..aaef96f0f 100644 --- a/src/main/resources/templates/tool/gen/gen.html +++ b/src/main/resources/templates/tool/gen/gen.html @@ -5,8 +5,8 @@