NEZ-2347 fix : alert rule evaluation log页面取消 复选框

This commit is contained in:
likexuan
2022-11-01 16:00:41 +08:00
parent 0a4b74a7e1
commit 363511115d
3 changed files with 205 additions and 17 deletions

View File

@@ -11,12 +11,12 @@
@selection-change="selectionChange"
@row-dblclick="(row)=>{queryMessage(row)}"
>
<el-table-column
<!-- <el-table-column
:resizable="false"
align="center"
type="selection"
width="55">
</el-table-column>
</el-table-column> -->
<el-table-column
v-for="(item, index) in customTableTitle"
v-if="item.show"
@@ -86,25 +86,26 @@ export default {
return {
tableTitle: [
{
label: this.$t('overall.state'),
prop: 'state',
show: true,
minWidth: 100
}, {
label: this.$t('alert.alertRuleMessage'),
prop: 'msg',
show: true,
minWidth: 100
}, {
label: this.$t('overall.startTime'),
prop: 'stts',
show: true,
minWidth: 300
minWidth: 120
}, {
label: this.$t('config.terminallog.duration'),
prop: 'duration',
show: true,
minWidth: 120
},
{
label: this.$t('overall.state'),
prop: 'state',
show: true,
minWidth: 120
}, {
label: this.$t('alert.alertRuleMessage'),
prop: 'msg',
show: true,
minWidth: 120
}
]
}