From 52fe82c6ee57ff1f3ce95746c46a9cc8a8e175f2 Mon Sep 17 00:00:00 2001 From: hanqin Date: Wed, 15 Apr 2026 13:50:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=AE=A1=E7=90=86=E5=90=8E=E5=8F=B0?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=89=A9=E5=93=81=E6=97=B6=E4=B9=9F=E8=A7=A6?= =?UTF-8?q?=E5=8F=91=E4=BB=BB=E5=8A=A1=E8=BF=9B=E5=BA=A6=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Build_God_Admin_Frontend/Frontend/src/api/bag.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build_God_Admin_Frontend/Frontend/src/api/bag.ts b/Build_God_Admin_Frontend/Frontend/src/api/bag.ts index 165fc10..565ee49 100644 --- a/Build_God_Admin_Frontend/Frontend/src/api/bag.ts +++ b/Build_God_Admin_Frontend/Frontend/src/api/bag.ts @@ -73,7 +73,7 @@ export const GetBagItems = (characterBagId: number): Promise => { } export const AddItemToBag = (characterBagId: number, data: AddBagItemDto): Promise => { - return http.post(`bag/${characterBagId}/items`, data) + return http.post(`bag/${characterBagId}/items/with-mission`, data) } export const RemoveItemFromBag = (characterBagId: number, itemId: number): Promise => {