From b05814d2511e4fe63ea86a0861a3f84c1b48261f Mon Sep 17 00:00:00 2001 From: OrangeM21 Date: Wed, 17 Jun 2020 13:57:09 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=E4=BF=AE=E5=A4=8D=E5=AF=86=E7=A0=81?= =?UTF-8?q?=E5=8C=A3=E5=AD=90=E5=AF=BC=E5=85=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/xpack/Vault/VaultList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/xpack/Vault/VaultList.vue b/src/views/xpack/Vault/VaultList.vue index 684bf447f..39a7d0c51 100644 --- a/src/views/xpack/Vault/VaultList.vue +++ b/src/views/xpack/Vault/VaultList.vue @@ -30,7 +30,7 @@ - + {{ this.$t('common.Create') }} @@ -178,7 +178,7 @@ export default { methods: { performUpdate(item) { this.$axios.put( - this.upLoadUrl, + `/api/v1/assets/asset-users/`, item.file, { headers: { 'Content-Type': 'text/csv' }, disableFlashErrorMsg: true } ).then((data) => { @@ -190,7 +190,7 @@ export default { }, performCreate(item) { this.$axios.post( - this.upLoadUrl, + `/api/v1/assets/asset-users/`, item.file, { headers: { 'Content-Type': 'text/csv' }, disableFlashErrorMsg: true } ).then((data) => {