MCSManager/public/template/gen_home.html
2017-11-13 12:26:31 +08:00

114 lines
3.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id='GenHome' class="OneContainer">
<div class="row">
<div class="col-md-4">
<div class="Panel PanelGreen">
<div class="PanelTitle">用户信息</div>
<div class="PanelBody">
<div class="PanelItem">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
用户名: {{ username }}
</div>
<div class="PanelItem">
<span class="glyphicon glyphicon-calendar" aria-hidden="true"></span>
创建时间: {{ createDate }}
</div>
<div class="PanelItem">
<span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
最后上线: {{ lastDate }}
</div>
</div>
</div>
<div class="Panel PanelBlue">
<div class="PanelTitle">用户{{ username }}的服务器</div>
<div class="PanelBody">
<div class="row">
<div class="col-sm-6">
<div class="LogV">{{ AllServerLen }} 个</div>
<div class="LogK">服务器总数 </div>
</div>
<div class="col-sm-6">
<div class="LogV">{{ OnlineLen }} 个</div>
<div class="LogK">正在运行的服务器</div>
</div>
</div>
</div>
</div>
<div class="Panel PanelGreen">
<div class="PanelTitle">用户{{ username }},欢迎使用</div>
<div class="PanelBody">
<div class="row">
<div class="col-sm-6">
<div class="PanelItem text-center" v-on:click="toRePassword()">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
修改密码
</div>
</div>
<div class="col-sm-6">
<div class="PanelItem text-center">
<span class="glyphicon glyphicon-book" aria-hidden="true"></span>
<a href="javascript:alert('您的提供商未提供使用说明')">使用说明</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-8">
<div class="Panel PanelBlue">
<div class="PanelTitle">用户 {{ username }} 服务器集合</div>
<div class="PanelBody">
<div class="row">
<div class="col-md-12">
<div class="PanelItem" v-for="item of userServerList">
<div class="row">
<div class="col-md-7">
<div class="PanelItemInfo">
<h4><span v-text="item.serverName"></span > | <span v-text="item.jarName"></span ></h4> 状态:
<span v-if="item.run" class="color-green"> 正在运行 </span>
<span v-else="item.run" class="color-red"> 关闭 </span>
<!-- <br>创建时间 <span v-text="item.createDate"></span>-->
<br>最后启动:<span v-text="item.lastDate"></span>
</div>
</div>
<div class="col-md-5 NextCol">
<div class="PanelItemMuem">
<button class="btn btn-info" v-on:click="toConsole(item.serverName)">
控制 | 管理
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--js-->
<script>
MI.rListener('onload', function() {
console.log('页面开始')
MCSERVER.colmSet(false);
VIEW_MODEL.newVue('GenHome', {
el: '#GenHome',
methods: {
toConsole: function(serverName) {
//onRedirect('./template/component/console.html', 'server/console', item.serverName );
RES.redirectPage('./template/component/console.html', 'server/console', serverName);
},
toRePassword : function(){
RES.redirectPage('./template/component/gen_repassword.html');
}
}
});
})
MI.rListener('onend', function() {
console.log('页面关闭')
})
</script>