diff --git a/nezha-fronted/src/components/page/project/project.vue b/nezha-fronted/src/components/page/project/project.vue index a4e6bf4cf..a56cc420e 100644 --- a/nezha-fronted/src/components/page/project/project.vue +++ b/nezha-fronted/src/components/page/project/project.vue @@ -132,7 +132,7 @@   - {{dateFormat(scope.row.lastUpdate)}} +
@@ -246,11 +246,11 @@ prop: 'state', show: true, }, - { - label: this.$t("project.endpoint.lastUpdate"), - prop: 'lastUpdate', - show: true, - }, + // { + // label: this.$t("project.endpoint.lastUpdate"), + // prop: 'lastUpdate', + // show: true, + // }, { label: this.$t('config.account.option'), prop: 'option', @@ -623,9 +623,9 @@ if(row){ if(row.state == 1){ - return 'up'+'['+this.formatUpdateTime(row.lastUpdate)+']'; + return 'up'; }else{ - return 'down'+'['+this.getStateErrorMsg(row)+']'; + return 'down'; } } },