fix:operation查询条件和列表显示的内容保持一致&explore bug修复
This commit is contained in:
@@ -63,4 +63,8 @@
|
|||||||
border-bottom-right-radius: 0px !important;
|
border-bottom-right-radius: 0px !important;
|
||||||
border-top-right-radius: 0px !important;
|
border-top-right-radius: 0px !important;
|
||||||
}
|
}
|
||||||
|
.chart-unit .el-input__inner{
|
||||||
|
border-top-left-radius: 0 !important;
|
||||||
|
border-bottom-left-radius: 0 !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -604,7 +604,17 @@ const cn = {
|
|||||||
operaId: "数据ID",
|
operaId: "数据ID",
|
||||||
time: "耗时",
|
time: "耗时",
|
||||||
params: "请求参数",
|
params: "请求参数",
|
||||||
state: "请求结果"
|
state: "请求结果",
|
||||||
|
operations:{
|
||||||
|
add:'add',
|
||||||
|
query:'query',
|
||||||
|
update:'update',
|
||||||
|
import:'import',
|
||||||
|
export:'export',
|
||||||
|
delete:'delete',
|
||||||
|
reset:'reset',
|
||||||
|
unknown:'unknown'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
mib: {
|
mib: {
|
||||||
mib: "SNMP MIB",
|
mib: "SNMP MIB",
|
||||||
|
|||||||
@@ -618,7 +618,17 @@ const en = {
|
|||||||
time: "Duration",
|
time: "Duration",
|
||||||
params: "Params",
|
params: "Params",
|
||||||
state: "State",
|
state: "State",
|
||||||
response:"Response"
|
response:"Response",
|
||||||
|
operations:{
|
||||||
|
add:'add',
|
||||||
|
query:'query',
|
||||||
|
update:'update',
|
||||||
|
import:'import',
|
||||||
|
export:'export',
|
||||||
|
delete:'delete',
|
||||||
|
reset:'reset',
|
||||||
|
unknown:'unknown'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
mib:{
|
mib:{
|
||||||
mib:'SNMP MIB',
|
mib:'SNMP MIB',
|
||||||
|
|||||||
@@ -61,28 +61,32 @@
|
|||||||
operation: [
|
operation: [
|
||||||
{
|
{
|
||||||
value: 'add',
|
value: 'add',
|
||||||
label: i18n.t('overall.add')
|
label: i18n.t('config.operationlog.operations.add')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'update',
|
value: 'update',
|
||||||
label: i18n.t('overall.edit')
|
label: i18n.t('config.operationlog.operations.update')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'query',
|
value: 'query',
|
||||||
label: i18n.t('overall.query')
|
label: i18n.t('config.operationlog.operations.query')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'import',
|
value: 'import',
|
||||||
label: i18n.t('overall.importExcelLower')
|
label: i18n.t('config.operationlog.operations.import')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'export',
|
value: 'export',
|
||||||
label: i18n.t('overall.exportExcelLower')
|
label: i18n.t('config.operationlog.operations.export')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'reset',
|
value: 'reset',
|
||||||
label: i18n.t('overall.reset')
|
label: i18n.t('config.operationlog.operations.reset')
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
value: 'unknown',
|
||||||
|
label: i18n.t('config.operationlog.operations.unknown')
|
||||||
|
},
|
||||||
],
|
],
|
||||||
alertMessageState: [
|
alertMessageState: [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -767,4 +767,10 @@ instance_cpu_time_ns{app="fox", proc="widget", rev="4d3a513", env="prod", job="c
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
.explore-table .ps__rail-x:hover{
|
||||||
|
opacity: 0.4 !important;
|
||||||
|
}
|
||||||
|
.explore-table .ps__rail-x:focus{
|
||||||
|
opacity: 0.9 !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user