2017-04-08 09:15:30 +00:00
|
|
|
{{{ template "common/header" . }}}
|
|
|
|
|
|
|
|
<div class="ui grid">
|
|
|
|
{{{ template "host/menu" . }}}
|
|
|
|
|
|
|
|
<div class="twelve wide column">
|
|
|
|
<div class="pageHeader">
|
|
|
|
<div class="segment">
|
|
|
|
<h3 class="ui dividing header">
|
2017-04-09 09:55:55 +00:00
|
|
|
<i class="linux icon"></i>
|
2017-04-08 09:15:30 +00:00
|
|
|
<div class="content">
|
2017-04-09 09:55:55 +00:00
|
|
|
主机列表
|
2017-04-08 09:15:30 +00:00
|
|
|
</div>
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-04-14 10:05:34 +00:00
|
|
|
<table class="ui striped table">
|
2017-04-08 09:15:30 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>主机名</th>
|
|
|
|
<th>别名</th>
|
|
|
|
<th>用户名</th>
|
|
|
|
<th>端口</th>
|
2017-04-20 01:36:42 +00:00
|
|
|
<th>任务数量</th>
|
2017-04-08 09:15:30 +00:00
|
|
|
<th>备注</th>
|
2017-04-13 09:35:59 +00:00
|
|
|
<th>操作</th>
|
2017-04-08 09:15:30 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{{range $i, $v := .Hosts}}}
|
|
|
|
<tr>
|
|
|
|
<td>{{{.Name}}}</td>
|
|
|
|
<td>{{{.Alias}}}</td>
|
|
|
|
<td>{{{.Username}}}</td>
|
|
|
|
<td>{{{.Port}}}</td>
|
2017-04-20 01:36:42 +00:00
|
|
|
<td></td>
|
2017-04-08 09:15:30 +00:00
|
|
|
<td>{{{.Remark}}}</td>
|
2017-04-20 01:36:42 +00:00
|
|
|
<td id="operation">
|
|
|
|
<a class="ui purple button" href="/host/edit/{{{.Id}}}">编辑</a>
|
2017-04-14 10:05:34 +00:00
|
|
|
<button class="ui positive button" onclick="util.removeConfirm('/host/remove/{{{.Id}}}')">删除</button>
|
2017-04-20 01:36:42 +00:00
|
|
|
<button class="ui blue button" @click="ping({{{.Id}}})">连接测试</button>
|
2017-04-14 10:05:34 +00:00
|
|
|
</td>
|
2017-04-08 09:15:30 +00:00
|
|
|
</tr>
|
|
|
|
{{{end}}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-04-20 01:36:42 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
var Vue = new Vue({
|
|
|
|
el: '#operation',
|
|
|
|
methods: {
|
|
|
|
ping: function(id) {
|
|
|
|
swal({
|
|
|
|
title: '',
|
|
|
|
text: "连接中.......",
|
|
|
|
type: 'info',
|
|
|
|
closeOnConfirm: true
|
|
|
|
});
|
|
|
|
util.get("/host/ping/" + id, function(code, message) {
|
|
|
|
swal('操作成功', '连接成功', 'success');
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2017-04-08 09:15:30 +00:00
|
|
|
{{{ template "common/footer" . }}}
|