From b8326ef8809bb524734fe3323aa20bffba273d73 Mon Sep 17 00:00:00 2001 From: feng <1304903146@qq.com> Date: Thu, 20 Apr 2023 19:21:47 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B4=A6=E5=8F=B7=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E6=BF=80=E6=B4=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/accounts/Account/AccountDetail/Detail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/accounts/Account/AccountDetail/Detail.vue b/src/views/accounts/Account/AccountDetail/Detail.vue index 0e8906d07..336131d05 100644 --- a/src/views/accounts/Account/AccountDetail/Detail.vue +++ b/src/views/accounts/Account/AccountDetail/Detail.vue @@ -64,7 +64,7 @@ export default { change: (val) => { this.$axios.patch( `/api/v1/accounts/accounts/${this.object.id}/`, - { is_active: val } + { is_active: val, name: this.object.name } ).then(res => { this.$message.success(this.$tc('common.updateSuccessMsg')) })