NEZ-598 alert message 页面修改

This commit is contained in:
songjingcheng
2021-05-08 09:40:53 +08:00
parent d8f727e542
commit a8ced7e52b
86 changed files with 2099 additions and 1450 deletions

View File

@@ -25,6 +25,7 @@
:prop="item.prop"
:resizable="true"
:sort-orders="['ascending', 'descending']"
:sortable="item.sortable"
:width="`${item.width}`"
class="data-column"
>
@@ -120,11 +121,13 @@ export default {
label: 'ID',
prop: 'id',
show: true,
width: 80
width: 80,
sortable:'custom'
}, {
label: this.$t('project.endpoint.name'),
prop: 'name',
show: true
show: true,
sortable:'custom'
}, {
label: this.$t('project.module.type'),
prop: 'type',
@@ -132,12 +135,14 @@ export default {
}, {
label: this.$t('project.project.project'),
prop: 'project',
show: true
show: true,
sortable:'custom'
},
{
label: this.$t('project.endpoint.asset'),
prop: 'asset',
show: true
show: true,
sortable:'custom'
},
{
label: this.$t('project.module.module'),
@@ -152,12 +157,14 @@ export default {
{
label: this.$t('project.endpoint.alerts'),
prop: 'alerts',
show: true
show: true,
sortable:'custom'
},
{
label: this.$t('project.endpoint.state'),
prop: 'state',
show: true
show: true,
sortable:'custom'
}
]
}