|
@@ -26,6 +26,8 @@
|
|
|
<!-- AdminLTE Skins. Choose a skin from the css/skins
|
|
<!-- AdminLTE Skins. Choose a skin from the css/skins
|
|
|
folder instead of downloading all of them to reduce the load. -->
|
|
folder instead of downloading all of them to reduce the load. -->
|
|
|
<link rel="stylesheet" href="/static/AdminLTE/dist/css/skins/_all-skins.min.css"/>
|
|
<link rel="stylesheet" href="/static/AdminLTE/dist/css/skins/_all-skins.min.css"/>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
<style>
|
|
<style>
|
|
|
body {
|
|
body {
|
|
|
padding-right: 0px !important;
|
|
padding-right: 0px !important;
|
|
@@ -144,11 +146,12 @@
|
|
|
<div class="box box-primary" >
|
|
<div class="box box-primary" >
|
|
|
<div class="box-header with-border">
|
|
<div class="box-header with-border">
|
|
|
<h3 class="box-title">基本信息</h3>
|
|
<h3 class="box-title">基本信息</h3>
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
<button class="btn btn-success pull-right" onclick="generateJson(0)">
|
|
<button class="btn btn-success pull-right" onclick="generateJson(0)">
|
|
|
生成
|
|
生成
|
|
|
</button>
|
|
</button>
|
|
|
|
|
+ <button class="btn btn-success pull-right" id="copyButton" onclick="copy2board()">
|
|
|
|
|
+ 复制到剪切板
|
|
|
|
|
+ </button>
|
|
|
<button class="btn btn-default pull-right" onclick="changeJob()">
|
|
<button class="btn btn-default pull-right" onclick="changeJob()">
|
|
|
加载任务
|
|
加载任务
|
|
|
</button>
|
|
</button>
|
|
@@ -351,6 +354,8 @@
|
|
|
<!-- add Task js for this file only -->
|
|
<!-- add Task js for this file only -->
|
|
|
<script src="/static/js/add_paper.js"></script>
|
|
<script src="/static/js/add_paper.js"></script>
|
|
|
<script src="/static/AdminLTE/bower_components/bootstrap-notify/dist/bootstrap-notify.min.js"></script>
|
|
<script src="/static/AdminLTE/bower_components/bootstrap-notify/dist/bootstrap-notify.min.js"></script>
|
|
|
|
|
+<script type="text/javascript" src="http://www.jq22.com/demo/clipboard.js-master201703170013/dist/clipboard.min.js"></script>
|
|
|
|
|
+
|
|
|
<script type="text/javascript" xmlns:th="http://www.thymeleaf.org" th:inline="javascript">
|
|
<script type="text/javascript" xmlns:th="http://www.thymeleaf.org" th:inline="javascript">
|
|
|
var ruleId ;
|
|
var ruleId ;
|
|
|
var ratioIndex;
|
|
var ratioIndex;
|
|
@@ -359,22 +364,14 @@
|
|
|
/*]]>*/
|
|
/*]]>*/
|
|
|
$(document).ready(function(){
|
|
$(document).ready(function(){
|
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
|
-
|
|
|
|
|
//Initialize Select2 Elements
|
|
//Initialize Select2 Elements
|
|
|
$('.select2').select2()
|
|
$('.select2').select2()
|
|
|
-
|
|
|
|
|
ruleId = 0;
|
|
ruleId = 0;
|
|
|
ratioIndex =0 ;
|
|
ratioIndex =0 ;
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
var taskListTable = $('#task-list').DataTable({
|
|
var taskListTable = $('#task-list').DataTable({
|
|
|
searching: true,
|
|
searching: true,
|
|
|
pageLength: 25
|
|
pageLength: 25
|
|
|
});
|
|
});
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
</script>
|
|
</script>
|