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 @@