From 8bbc66a28131b6d0184ef12e9068a1f6f524a670 Mon Sep 17 00:00:00 2001 From: wangruidong <940853815@qq.com> Date: Mon, 8 Apr 2024 11:33:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8E=88=E6=9D=83=E8=B5=84=E4=BA=A7?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E8=B4=A6=E5=8F=B7=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Table/TableFormatters/AccountInfoFormatter.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table/TableFormatters/AccountInfoFormatter.vue b/src/components/Table/TableFormatters/AccountInfoFormatter.vue index eca46bfc4..e9f338926 100644 --- a/src/components/Table/TableFormatters/AccountInfoFormatter.vue +++ b/src/components/Table/TableFormatters/AccountInfoFormatter.vue @@ -35,7 +35,7 @@ export default { methods: { async getAsyncItems() { const userId = this.$route.params.id - const url = `api/v1/perms/users/${userId}/assets/${this.row.id}` + const url = `/api/v1/perms/users/${userId}/assets/${this.row.id}` this.$axios.get(url).then(res => { this.accountData = res?.permed_accounts || [] })