style: 快照增加10px底部间距

This commit is contained in:
zhangyu
2022-07-04 10:33:46 +08:00
parent 3132b306d3
commit 3c264e3092
5 changed files with 12 additions and 6 deletions

View File

@@ -6,6 +6,9 @@
height: 100%; height: 100%;
width: auto; width: auto;
} }
.pdfDom{
padding-bottom: 20px;
}
.panel-chart { .panel-chart {
border: 1px solid $--chart-box-border-color; border: 1px solid $--chart-box-border-color;
height: 100%; height: 100%;

View File

@@ -85,7 +85,9 @@ const newcn = {
}, },
overall: { overall: {
system: '系统', system: '系统',
back: '返回' back: '返回',
enabled: '启用',
disabled: '已禁用'
}, },
...zhLocale ...zhLocale
} }

View File

@@ -93,7 +93,9 @@ const newen = {
}, },
overall: { overall: {
system: 'System', system: 'System',
back: 'Back' back: 'Back',
enabled: 'Enabled',
disabled: 'Disabled'
}, },
...enLocale ...enLocale
} }

View File

@@ -15,7 +15,7 @@ export default {
const metricMap = new Map() const metricMap = new Map()
metrics.forEach((item) => { metrics.forEach((item) => {
let key = '' let key = ''
if (/^[a-zA-Z]+?_[a-zA-Z]*/.test(item)) { if (/^[a-zA-Z0-9]+?_[a-zA-Z0-9]*/.test(item)) {
key = item.split('_')[0] key = item.split('_')[0]
} else if (/^_\w*/.test(item)) { } else if (/^_\w*/.test(item)) {
key = ' ' key = ' '

File diff suppressed because one or more lines are too long