fix:operation查询条件和列表显示的内容保持一致&explore bug修复

This commit is contained in:
wangwenrui
2020-05-07 19:20:40 +08:00
parent 9a23601c86
commit 7f15d3563d
5 changed files with 43 additions and 9 deletions

View File

@@ -63,4 +63,8 @@
border-bottom-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>

View File

@@ -604,7 +604,17 @@ const cn = {
operaId: "数据ID",
time: "耗时",
params: "请求参数",
state: "请求结果"
state: "请求结果",
operations:{
add:'add',
query:'query',
update:'update',
import:'import',
export:'export',
delete:'delete',
reset:'reset',
unknown:'unknown'
}
},
mib: {
mib: "SNMP MIB",

View File

@@ -618,7 +618,17 @@ const en = {
time: "Duration",
params: "Params",
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:'SNMP MIB',

View File

@@ -61,28 +61,32 @@
operation: [
{
value: 'add',
label: i18n.t('overall.add')
label: i18n.t('config.operationlog.operations.add')
},
{
value: 'update',
label: i18n.t('overall.edit')
label: i18n.t('config.operationlog.operations.update')
},
{
value: 'query',
label: i18n.t('overall.query')
label: i18n.t('config.operationlog.operations.query')
},
{
value: 'import',
label: i18n.t('overall.importExcelLower')
label: i18n.t('config.operationlog.operations.import')
},
{
value: 'export',
label: i18n.t('overall.exportExcelLower')
label: i18n.t('config.operationlog.operations.export')
},
{
value: 'reset',
label: i18n.t('overall.reset')
}
label: i18n.t('config.operationlog.operations.reset')
},
{
value: 'unknown',
label: i18n.t('config.operationlog.operations.unknown')
},
],
alertMessageState: [
{

View File

@@ -767,4 +767,10 @@ instance_cpu_time_ns{app="fox", proc="widget", rev="4d3a513", env="prod", job="c
text-overflow: ellipsis;
white-space: nowrap;
}
.explore-table .ps__rail-x:hover{
opacity: 0.4 !important;
}
.explore-table .ps__rail-x:focus{
opacity: 0.9 !important;
}
</style>