mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2026-01-02 00:56:38 +08:00
可以在管理界面修改用户平台数据看板相关设置
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
<first-menu>
|
||||
<a href="" class="item" @click.prevent="createNode()">[添加节点]</a>
|
||||
<a href="/settings/user-ui" class="item">[界面设置]</a>
|
||||
</first-menu>
|
||||
|
||||
<p class="comment" v-if="nodes.length == 0">暂时还没有节点。</p>
|
||||
|
||||
@@ -79,6 +79,27 @@
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h4>数据看板</h4>
|
||||
<table class="ui table definition selectable">
|
||||
<tr>
|
||||
<td class="title">显示流量相关数据和图表</td>
|
||||
<td><checkbox name="showTrafficCharts" v-model="config.showTrafficCharts"></checkbox></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="title">显示带宽相关数据和图表</td>
|
||||
<td><checkbox name="showBandwidthCharts" v-model="config.showBandwidthCharts"></checkbox></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="title">带宽单位</td>
|
||||
<td>
|
||||
<select class="ui dropdown auto-width" name="bandwidthUnit" v-model="config.bandwidthUnit">
|
||||
<option value="bit">比特</option>
|
||||
<option value="byte">字节</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h4>其他</h4>
|
||||
<table class="ui table definition selectable">
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user