<%@ page contentType="text/html;charset=UTF-8"%>
|
<html>
|
<head>
|
<link rel="stylesheet" href="../static/AdminLTE/bower_components/bootstrap/dist/css/bootstrap.min.css">
|
<!-- Font Awesome -->
|
<link rel="stylesheet" href="../static/AdminLTE/bower_components/font-awesome/css/font-awesome.min.css">
|
<!-- Ionicons -->
|
<link rel="stylesheet" href="../static/AdminLTE/bower_components/Ionicons/css/ionicons.min.css">
|
<!-- Theme style -->
|
<link rel="stylesheet" href="../static/AdminLTE/dist/css/AdminLTE.min.css">
|
<link rel="stylesheet" href="../static/AdminLTE/dist/css/skins/skin-blue.min.css">
|
<script type="text/javascript"
|
src="../static/jquery/jquery-3.1.0.min.js"></script>
|
|
|
<style>
|
.box table tr th,.box table tr td{
|
text-align:center;
|
}
|
</style>
|
<title>机器列表</title>
|
</head>
|
<body style="padding: 20px;background-color:#D5EAFF;height:100%">
|
<div id='app'>
|
<!-- <div style='height:20px;width:300px;background-color:#3C8DBC;float:right;'><span style = 'color:#fff;' >故障情况:</span><span id='infos'></span></div> -->
|
<section class="content-header">
|
<h1>设备列表 <small></small></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="#">设备<i class="fa fa-dashboard"></i>设备列表
|
</a></li>
|
</ol>
|
</section>
|
<div id = "allstatu" allstatu = "${allstatu}"></div>
|
<div id = "info" info = "${info}"></div>
|
<!-- Main content -->
|
<section class="content container-fluid">
|
<div>
|
</div>
|
|
<div class="box" style="height: 600px; overflow: auto;margin-top: 10px;">
|
<table class="table table-striped table-hover"
|
style="overflow-x: auto">
|
<thead>
|
<tr>
|
<th>设备编号</th>
|
<th>设备名称</th>
|
<th>IP地址</th>
|
<th>端口</th>
|
<th>操作</th>
|
|
</tr>
|
</thead>
|
<tbody>
|
<tr v-for="items in shuzu">
|
<td v-for="item in items">
|
{{item}}
|
</td>
|
<td>
|
<a :href="'./jiqixieyi.jsp?id='+items[0]" class='btn btn-success'>协议详情</a>
|
<a :href="'./jiqiluoji.jsp?id='+items[0]" class='btn btn-success'>逻辑详情</a>
|
<a @click="deleteMachine(items[0])" class='btn btn-success'>删除</a>
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
</div>
|
</section>
|
<!-- /.content -->
|
</div>
|
</body>
|
<script src="../js/vue.min.js"></script>
|
<script src="../js/mixins.js"></script>
|
<script>
|
let app = new Vue({
|
el:'#app',
|
mixins:[mixin],
|
data:{
|
shuzu:[],
|
},
|
methods:{
|
deleteMachine:function(id){
|
if(!confirm("确定删除机器!")){
|
return false;
|
}
|
let sql="{call AXJ_shebeipeizhi_machine_delete(?,?)}~"+"{'machineid':'"+id+"'}";
|
this.connects("删除机器",sql,1,1);
|
}
|
},
|
mounted:function(){
|
let sql="{call AXJ_shebeipeizhi_machine_chaxun(?)}";
|
let flag=2;
|
loadAjxs('machine.jsp机器查询',sql,flag,"shuzu");
|
}
|
})
|
</script>
|
</html>
|