修复dashboard站点详情页和服务器详情页浏览器控制台的错误

This commit is contained in:
jingrow 2025-07-30 19:47:00 +08:00
parent 33bd5dd87b
commit 75ded1601f
2 changed files with 2 additions and 2 deletions

View File

@ -241,7 +241,7 @@ export default {
orderBy: 'creation desc',
searchField: 'host_name',
route(row) {
return { name: '站点详情', params: { name: row.name } };
return { name: 'Site Detail', params: { name: row.name } };
},
filterControls() {
return [

View File

@ -164,7 +164,7 @@ documentResource: this.$resources.document
{
label: this.title,
route: {
name: `${this.object.pagetype} 详情`,
name: `${this.object.pagetype} Detail`,
params: { name: this.name }
}
}