diff --git a/nezha-fronted/src/components/common/language/cn.js b/nezha-fronted/src/components/common/language/cn.js
index 9a62a678c..6327723b3 100644
--- a/nezha-fronted/src/components/common/language/cn.js
+++ b/nezha-fronted/src/components/common/language/cn.js
@@ -1201,7 +1201,10 @@ const cn = {
password: '密码',
authTypeNull: 'none',
authTypeWord: 'basic auth',
- authTypeToken: 'bearer token'
+ authTypeToken: 'bearer token',
+ name: '名称',
+ configs: 'Configs',
+ state: '状态'
},
metrics: {
metrics: '指标',
diff --git a/nezha-fronted/src/components/common/language/en.js b/nezha-fronted/src/components/common/language/en.js
index 1ce927960..945ec2b37 100644
--- a/nezha-fronted/src/components/common/language/en.js
+++ b/nezha-fronted/src/components/common/language/en.js
@@ -1207,7 +1207,10 @@ const en = {
password: 'Password',
authTypeNull: 'None',
authTypeWord: 'basic auth',
- authTypeToken: 'bearer token'
+ authTypeToken: 'bearer token',
+ name: 'Name',
+ configs: 'Configs',
+ state: 'State'
},
metrics: {
metrics: 'Metrics', // "指标"
diff --git a/nezha-fronted/src/components/common/table/settings/endpointTable.vue b/nezha-fronted/src/components/common/table/settings/endpointTable.vue
index b6daa8312..093ac4e39 100644
--- a/nezha-fronted/src/components/common/table/settings/endpointTable.vue
+++ b/nezha-fronted/src/components/common/table/settings/endpointTable.vue
@@ -37,15 +37,26 @@
{{scope.row[item.prop]}}
- {{scope.row[item.prop]}}
+ {{scope.row.module.type}}
{{scope.row[item.prop].name}}
-
- {{scope.row[item.prop]}}
+
+ {{scope.row[item.prop].name}}
-
+
+
+ {{scope.row.alertNum}} active
+
+
+
+
+ {}
+ {{scope.row[item.prop]}}
+
+
+
{{scope.row[item.prop]}}
{{scope.row[item.prop] ? scope.row[item.prop] : ''}}
@@ -86,37 +97,36 @@ export default {
show: true,
width: 80
}, {
- label: this.$t('project.module.moduleName'),
+ label: this.$t('project.endpoint.name'),
prop: 'name',
- show: true,
- width: 150
+ show: true
}, {
label: this.$t('project.module.type'),
prop: 'type',
- show: true,
- width: 150
+ show: true
}, {
label: this.$t('project.project.project'),
prop: 'project',
- show: true,
- width: 150
+ show: true
},
{
- label: this.$t('project.endpoint.endpoint'),
- prop: 'endpointNum',
- show: true,
- width: 150
+ label: this.$t('project.module.module'),
+ prop: 'module',
+ show: true
}, {
- label: this.$t('project.module.alerts'),
- prop: 'alertNum',
- show: true,
- width: 150
+ label: this.$t('project.endpoint.alerts'),
+ prop: 'alerts',
+ show: true
},
{
- label: this.$t('overall.remark'),
- prop: 'remark',
- show: true,
- minWidth: 150
+ label: this.$t('project.endpoint.configs'),
+ prop: 'configs',
+ show: true
+ },
+ {
+ label: this.$t('project.endpoint.state'),
+ prop: 'state',
+ show: true
}
]
}
@@ -129,3 +139,24 @@ export default {
computed: {}
}
+