mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-13 20:05:24 +00:00
fix: update style
This commit is contained in:
parent
6bfea64a15
commit
c9f75641ca
@ -182,7 +182,7 @@ const msg = {
|
|||||||
iframeWidgetTip: "Add a link to a widget",
|
iframeWidgetTip: "Add a link to a widget",
|
||||||
iframeSrc: "Iframe Link",
|
iframeSrc: "Iframe Link",
|
||||||
generateLink: "Generate Link",
|
generateLink: "Generate Link",
|
||||||
setDuration: "Set Duration",
|
setDuration: "Lock Query Duration",
|
||||||
openFunction: "OpenFunction",
|
openFunction: "OpenFunction",
|
||||||
seconds: "Seconds",
|
seconds: "Seconds",
|
||||||
hourTip: "Select Hour",
|
hourTip: "Select Hour",
|
||||||
@ -202,7 +202,7 @@ const msg = {
|
|||||||
topology: "Topology",
|
topology: "Topology",
|
||||||
trace: "Trace",
|
trace: "Trace",
|
||||||
alarm: "Alerting",
|
alarm: "Alerting",
|
||||||
auto: "Auto",
|
auto: "Auto Fresh",
|
||||||
reload: "Reload",
|
reload: "Reload",
|
||||||
version: "Version",
|
version: "Version",
|
||||||
copy: "Copy",
|
copy: "Copy",
|
||||||
|
@ -165,7 +165,7 @@ const msg = {
|
|||||||
iframeWidgetTip: "Añadir enlaces a los gadgets",
|
iframeWidgetTip: "Añadir enlaces a los gadgets",
|
||||||
iframeSrc: "Enlace Iframe",
|
iframeSrc: "Enlace Iframe",
|
||||||
generateLink: "Generar enlaces",
|
generateLink: "Generar enlaces",
|
||||||
setDuration: "Establecer la duración",
|
setDuration: "Duración de la consulta de bloqueo",
|
||||||
openFunction: "OpenFunction",
|
openFunction: "OpenFunction",
|
||||||
seconds: "Segundos",
|
seconds: "Segundos",
|
||||||
hourTip: "Seleccione Hora",
|
hourTip: "Seleccione Hora",
|
||||||
@ -200,7 +200,7 @@ const msg = {
|
|||||||
topology: "Topología",
|
topology: "Topología",
|
||||||
trace: "Traza",
|
trace: "Traza",
|
||||||
alarm: "Recordatorio en curso",
|
alarm: "Recordatorio en curso",
|
||||||
auto: "Auto",
|
auto: "Auto Fresh",
|
||||||
reload: "Recargar",
|
reload: "Recargar",
|
||||||
version: "Versión",
|
version: "Versión",
|
||||||
copy: "Copiar",
|
copy: "Copiar",
|
||||||
|
@ -179,7 +179,7 @@ const msg = {
|
|||||||
iframeWidgetTip: "添加widget的链接",
|
iframeWidgetTip: "添加widget的链接",
|
||||||
iframeSrc: "Iframe链接",
|
iframeSrc: "Iframe链接",
|
||||||
generateLink: "生成链接",
|
generateLink: "生成链接",
|
||||||
setDuration: "设置时间区间",
|
setDuration: "锁定查询持续时间",
|
||||||
openFunction: "OpenFunction",
|
openFunction: "OpenFunction",
|
||||||
seconds: "秒",
|
seconds: "秒",
|
||||||
hourTip: "选择小时",
|
hourTip: "选择小时",
|
||||||
@ -199,7 +199,7 @@ const msg = {
|
|||||||
trace: "追踪",
|
trace: "追踪",
|
||||||
alarm: "告警",
|
alarm: "告警",
|
||||||
event: "事件",
|
event: "事件",
|
||||||
auto: "自动",
|
auto: "自动更新",
|
||||||
reload: "刷新",
|
reload: "刷新",
|
||||||
editmode: "编辑模式",
|
editmode: "编辑模式",
|
||||||
version: "版本",
|
version: "版本",
|
||||||
|
@ -32,6 +32,7 @@ limitations under the License. -->
|
|||||||
</el-dialog>
|
</el-dialog>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
v-model="dashboardStore.showLinkConfig"
|
v-model="dashboardStore.showLinkConfig"
|
||||||
|
width="800px"
|
||||||
:destroy-on-close="true"
|
:destroy-on-close="true"
|
||||||
@closed="dashboardStore.setWidgetLink(false)"
|
@closed="dashboardStore.setWidgetLink(false)"
|
||||||
>
|
>
|
||||||
|
@ -15,20 +15,20 @@ limitations under the License. -->
|
|||||||
<template>
|
<template>
|
||||||
<div class="link-content">
|
<div class="link-content">
|
||||||
<div>
|
<div>
|
||||||
<label class="mr-5">{{ t("setDuration") }}</label>
|
<label>{{ t("setDuration") }}</label>
|
||||||
<el-switch v-model="hasDuration" />
|
<el-switch v-model="hasDuration" />
|
||||||
</div>
|
</div>
|
||||||
<div v-if="hasDuration">
|
<div v-if="hasDuration">
|
||||||
<label class="mr-20">{{ t("duration") }}</label>
|
<label>{{ t("duration") }}</label>
|
||||||
<TimePicker
|
<TimePicker
|
||||||
:value="[appStore.durationRow.start, appStore.durationRow.end]"
|
:value="[appStore.durationRow.start, appStore.durationRow.end]"
|
||||||
position="bottom"
|
position="right"
|
||||||
format="YYYY-MM-DD HH:mm"
|
format="YYYY-MM-DD HH:mm"
|
||||||
@input="changeTimeRange"
|
@input="changeTimeRange"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!hasDuration">
|
<div v-if="!hasDuration">
|
||||||
<span class="label-auto">{{ t("auto") }}</span>
|
<label>{{ t("auto") }}</label>
|
||||||
<el-switch class="mr-5" v-model="auto" style="height: 25px" />
|
<el-switch class="mr-5" v-model="auto" style="height: 25px" />
|
||||||
<Selector v-model="freshOpt" :options="RefreshOptions" size="small" />
|
<Selector v-model="freshOpt" :options="RefreshOptions" size="small" />
|
||||||
</div>
|
</div>
|
||||||
@ -142,10 +142,11 @@ limitations under the License. -->
|
|||||||
height: 300px;
|
height: 300px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label-auto {
|
label {
|
||||||
margin-right: 45px;
|
display: inline-block;
|
||||||
|
width: 250px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user