|
|
@ -46,6 +46,23 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button id="rear" type="button" onclick="back()" class="btn btn-lg btn-primary glyphicon glyphicon-circle-arrow-down" style="margin-left: 56px;"> </button>
|
|
|
|
<button id="rear" type="button" onclick="back()" class="btn btn-lg btn-primary glyphicon glyphicon-circle-arrow-down" style="margin-left: 56px;"> </button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
<button id="up" type="button" onclick="up()" class="btn btn-lg btn-primary glyphicon glyphicon-circle-arrow-up" style="margin-left: 56px;"> </button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- <div>
|
|
|
|
|
|
|
|
<button id="printButton" type="button" onclick="printClicked()" class="btn btn-lg btn-primary">打印点击</button>
|
|
|
|
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
<button type="button" onclick="yunleft()" class="btn btn-lg btn-primary glyphicon glyphicon-circle-arrow-left" > </button>
|
|
|
|
|
|
|
|
<button type="button" onclick="guiwei()" class="btn btn-lg btn-primary glyphicon glyphicon-stop"> </button>
|
|
|
|
|
|
|
|
<button type="button" onclick="yunright()" class="btn btn-lg btn-primary glyphicon glyphicon-circle-arrow-right" > </button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button id="down" type="button" onclick="down()" class="btn btn-lg btn-primary glyphicon glyphicon-circle-arrow-down" style="margin-left: 56px;"> </button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<script src='/Decoder.js'></script>
|
|
|
|
<script src='/Decoder.js'></script>
|
|
|
@ -170,7 +187,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
} function up() {
|
|
|
|
|
|
|
|
// console.log("132465789891651354684");
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type: "GET",
|
|
|
|
|
|
|
|
dataType: "json",
|
|
|
|
|
|
|
|
url: "/control/up" ,
|
|
|
|
|
|
|
|
data: $('#form1').serialize(), //提交的数据
|
|
|
|
|
|
|
|
success: function (result) {
|
|
|
|
|
|
|
|
console.log(result); //打印服务端返回的数据(调试用)
|
|
|
|
|
|
|
|
if (result.resultCode == 200) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error : function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
} function yunleft() {
|
|
|
|
|
|
|
|
// console.log("132465789891651354684");
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type: "GET",
|
|
|
|
|
|
|
|
dataType: "json",
|
|
|
|
|
|
|
|
url: "/control/yunleft" ,
|
|
|
|
|
|
|
|
data: $('#form1').serialize(), //提交的数据
|
|
|
|
|
|
|
|
success: function (result) {
|
|
|
|
|
|
|
|
console.log(result); //打印服务端返回的数据(调试用)
|
|
|
|
|
|
|
|
if (result.resultCode == 200) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error : function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function yunright() {
|
|
|
|
|
|
|
|
// console.log("132465789891651354684");
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type: "GET",
|
|
|
|
|
|
|
|
dataType: "json",
|
|
|
|
|
|
|
|
url: "/control/yunright" ,
|
|
|
|
|
|
|
|
data: $('#form1').serialize(), //提交的数据
|
|
|
|
|
|
|
|
success: function (result) {
|
|
|
|
|
|
|
|
console.log(result); //打印服务端返回的数据(调试用)
|
|
|
|
|
|
|
|
if (result.resultCode == 200) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error : function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function down() {
|
|
|
|
|
|
|
|
// console.log("132465789891651354684");
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type: "GET",
|
|
|
|
|
|
|
|
dataType: "json",
|
|
|
|
|
|
|
|
url: "/control/down" ,
|
|
|
|
|
|
|
|
data: $('#form1').serialize(), //提交的数据
|
|
|
|
|
|
|
|
success: function (result) {
|
|
|
|
|
|
|
|
console.log(result); //打印服务端返回的数据(调试用)
|
|
|
|
|
|
|
|
if (result.resultCode == 200) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error : function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function guiwei() {
|
|
|
|
|
|
|
|
// console.log("132465789891651354684");
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type: "GET",
|
|
|
|
|
|
|
|
dataType: "json",
|
|
|
|
|
|
|
|
url: "/control/guiwei" ,
|
|
|
|
|
|
|
|
data: $('#form1').serialize(), //提交的数据
|
|
|
|
|
|
|
|
success: function (result) {
|
|
|
|
|
|
|
|
console.log(result); //打印服务端返回的数据(调试用)
|
|
|
|
|
|
|
|
if (result.resultCode == 200) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error : function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
function refreshPage() {
|
|
|
|
function refreshPage() {
|
|
|
|