xueli.xue 8 anni fa
parent
commit
8a41d0fdce

+ 0 - 6
xxl-job-admin/src/main/webapp/WEB-INF/template/jobinfo/jobinfo.index.ftl Vedi File

@@ -7,12 +7,6 @@
7 7
 	<!-- DataTables -->
8 8
   	<link rel="stylesheet" href="${request.contextPath}/static/adminlte/plugins/datatables/dataTables.bootstrap.css">
9 9
 
10
-	<#-- select2
11
-    <link rel="stylesheet" href="${request.contextPath}/static/adminlte/plugins/select2/select2.min.css">
12
-    <script src="${request.contextPath}/static/adminlte/plugins/select2/select2.min.js"></script>
13
-    //$(".select2").select2();
14
-    -->
15
-
16 10
 </head>
17 11
 <body class="hold-transition skin-blue sidebar-mini <#if cookieMap?exists && "off" == cookieMap["adminlte_settings"].value >sidebar-collapse</#if>">
18 12
 <div class="wrapper">

+ 0 - 3
xxl-job-admin/src/main/webapp/static/adminlte/plugins/select2/i18n/zh-CN.js Vedi File

@@ -1,3 +0,0 @@
1
-/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
2
-
3
-(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})();

File diff suppressed because it is too large
+ 0 - 6436
xxl-job-admin/src/main/webapp/static/adminlte/plugins/select2/select2.full.js


File diff suppressed because it is too large
+ 0 - 3
xxl-job-admin/src/main/webapp/static/adminlte/plugins/select2/select2.full.min.js


File diff suppressed because it is too large
+ 0 - 1
xxl-job-admin/src/main/webapp/static/adminlte/plugins/select2/select2.min.css


File diff suppressed because it is too large
+ 0 - 3
xxl-job-admin/src/main/webapp/static/adminlte/plugins/select2/select2.min.js


+ 1 - 1
xxl-job-executor-springboot-example/src/main/java/com/xxl/job/executor/mvc/handler/IndexController.java Vedi File

@@ -12,7 +12,7 @@ public class IndexController {
12 12
     @RequestMapping("/")
13 13
     @ResponseBody
14 14
     String index() {
15
-        return "xxl job running.";
15
+        return "xxl job is running.";
16 16
     }
17 17
 
18 18
 }