优化 界面细节问题

This commit is contained in:
Suwings 2020-02-29 20:28:05 +08:00
parent db4973a003
commit 558083fde7
2 changed files with 7 additions and 7 deletions

View File

@ -30,19 +30,19 @@
<div class="PanelBody">
<transition name="slide-fade">
<div class="PanelItem" v-on:click="toOpenServer()" v-if="!run">
<div class="PanelItem" v-on:click="toOpenServer()" v-show="!run">
<span class="glyphicon glyphicon-play" aria-hidden="true"> </span> 开启服务器
</div>
</transition>
<transition name="slide-fade">
<div class="PanelItem" v-on:click="toCommand('__stop__')" v-if="run">
<div class="PanelItem" v-on:click="toCommand('__stop__')" v-show="run">
<span class="glyphicon glyphicon-pause" aria-hidden="true"> </span> 关闭服务器
</div>
</transition>
<div class="PanelItem" v-on:click="toCommand('__restart__')" v-if="run">
<div class="PanelItem" v-on:click="toCommand('__restart__')" v-show="run">
<span class="glyphicon glyphicon-refresh" aria-hidden="true"> </span> 重启服务器
</div>
<div class="PanelItem" v-on:click="toCommand('__killserver__')" v-if="run">
<div class="PanelItem" v-on:click="toCommand('__killserver__')" v-show="run">
<span class="glyphicon glyphicon-remove" aria-hidden="true"> </span> 强制性结束进程
</div>
</div>
@ -54,13 +54,13 @@
<span class="glyphicon glyphicon-cog" aria-hidden="true"> </span> Server.properties 配置文件
</div>
<transition name="slide-fade">
<div class="PanelItem" v-on:click="toAutoRestart(false)" v-if="serverData.autoRestart">
<div class="PanelItem" v-on:click="toAutoRestart(false)" v-show="serverData.autoRestart">
<span class="glyphicon glyphicon-retweet" aria-hidden="true"> </span> 崩溃重启:
<span style="color: #29b90c;">打开</span>
</div>
</transition>
<transition name="slide-fade">
<div class="PanelItem" v-on:click="toAutoRestart(true)" v-if="!serverData.autoRestart">
<div class="PanelItem" v-on:click="toAutoRestart(true)" v-show="!serverData.autoRestart">
<span class="glyphicon glyphicon-retweet" aria-hidden="true"> </span> 崩溃重启:
<span style="color: #818181;">关闭</span>
</div>

View File

@ -3,7 +3,7 @@
<div id='News' class="col-md-8">
<div class="Panel PanelBlack">
<div class="PanelTitle">最新动态与信息通知</div>
<div class="PanelBody" style="max-height: 590px;overflow-y: scroll;">
<div class="PanelBody" style="max-height: 94vh;overflow-y: scroll;">
<p>关注这里如果出现BUG/新版本我们会立即通告 (面板自动每天定时更新)</p>
<div class="news" v-for="item of items">
<p class="color-gray" v-text="item.time"></p>