From 568653d5cb3516b2738ca5bea4e52e021111adc0 Mon Sep 17 00:00:00 2001 From: Charles7c Date: Wed, 5 Jun 2024 21:05:26 +0800 Subject: [PATCH 1/5] =?UTF-8?q?chore:=20=E8=B0=83=E6=95=B4=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=8F=82=E6=95=B0=E8=AF=B7=E6=B1=82=E6=96=B9=E5=BC=8F?= =?UTF-8?q?=EF=BC=8C=E8=B0=83=E6=95=B4=E9=80=9A=E7=94=A8=E5=AD=97=E5=85=B8?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/system/option.ts | 2 +- src/components/GiCell/GiCellTag.vue | 14 +++++++------- src/types/global.d.ts | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/apis/system/option.ts b/src/apis/system/option.ts index 206ba02..1ae384d 100644 --- a/src/apis/system/option.ts +++ b/src/apis/system/option.ts @@ -10,7 +10,7 @@ export function listOption(query: System.OptionQuery) { /** @desc 修改参数 */ export function updateOption(data: any) { - return http.patch(`${BASE_URL}`, data) + return http.put(`${BASE_URL}`, data) } /** @desc 重置参数 */ diff --git a/src/components/GiCell/GiCellTag.vue b/src/components/GiCell/GiCellTag.vue index 98d5bfe..dae70dc 100644 --- a/src/components/GiCell/GiCellTag.vue +++ b/src/components/GiCell/GiCellTag.vue @@ -1,12 +1,12 @@