@@ -98,6 +98,9 @@
+
\ No newline at end of file
diff --git a/Web/src/services/Index/FightService.ts b/Web/src/services/Index/FightService.ts
index 7555da8..9f1cabe 100644
--- a/Web/src/services/Index/FightService.ts
+++ b/Web/src/services/Index/FightService.ts
@@ -10,6 +10,14 @@ export class FightService {
return await ApiService.Request("post", "/Fight/FightMonster", { type, monsterId, sign });
}
+ /**
+ * 角色战斗生成
+ * GET /Fight/FightPerson
+ */
+ static async FightPerson(no: string) {
+ return await ApiService.Request("get", "/Fight/FightPerson", { no });
+ }
+
/**
* 战斗接口
* POST /Fight/Fight
diff --git a/Web/src/services/Index/RankService.ts b/Web/src/services/Index/RankService.ts
new file mode 100644
index 0000000..6e6fbe0
--- /dev/null
+++ b/Web/src/services/Index/RankService.ts
@@ -0,0 +1,9 @@
+export class RankService {
+ /**
+ * 获取排名数据
+ * GET /Rank/GetRankData
+ */
+ static async GetRankData(type: number, page: number) {
+ return await ApiService.Request("get", "/Rank/GetRankData", { type, page });
+ }
+}
\ No newline at end of file
diff --git a/Web/src/services/map/StoreService.ts b/Web/src/services/map/StoreService.ts
index 49299a6..62e0bde 100644
--- a/Web/src/services/map/StoreService.ts
+++ b/Web/src/services/map/StoreService.ts
@@ -38,4 +38,12 @@ export class StoreService {
static async Sale(npcId: number, count: number, search: string, type: number, id: string) {
return await ApiService.Request("post", "/Map/Store/Sale", { npcId, count, search, type, id });
}
+
+ /**
+ * 批量出售装备
+ * GET /Map/Store/BathSaleEqu
+ */
+ static async BathSaleEqu(npcId: number, query: string) {
+ return await ApiService.Request("get", "/Map/Store/BathSaleEqu", { npcId, query });
+ }
}
\ No newline at end of file
diff --git a/Web/src/utility/FightTool.ts b/Web/src/utility/FightTool.ts
index cad88d2..152910c 100644
--- a/Web/src/utility/FightTool.ts
+++ b/Web/src/utility/FightTool.ts
@@ -142,7 +142,7 @@ export class FightTool {
if (this.randomTrigger(atkUser.del_Fashion)) {
if (defUser.code == 'Person') {
remData.push({
- "code": "equ",
+ "code": "Equ",
"par": "Fashion",
"count": 1
});