This commit is contained in:
Putoo
2026-07-13 20:06:01 +08:00
parent b5de98a214
commit aa6ca6ac08
3 changed files with 1 additions and 4 deletions

View File

@@ -14,6 +14,5 @@ public static class SkillEnum
AGILE,//敏捷术 AGILE,//敏捷术
RIDI,//乘骑术 RIDI,//乘骑术
WING,//翼形术 WING,//翼形术
Collect,//采集术
} }
} }

View File

@@ -699,7 +699,7 @@ public class MapController : ControllerBase
return PoAction.Message($"{lockTime}秒后可采集!"); return PoAction.Message($"{lockTime}秒后可采集!");
} }
var skillInfo = await _skillService.GetUserSkillInfo(userId, nameof(SkillEnum.code.Collect)); var skillInfo = await _skillService.GetUserSkillInfo(userId, nameof(SkillEnum.code.GATHER));
if (skillInfo == null) if (skillInfo == null)
{ {
return PoAction.Message("未学习采集术!"); return PoAction.Message("未学习采集术!");

View File

@@ -96,8 +96,6 @@ onMounted(async () => {
} }
}) })
const BindData = async (): Promise<void> => { const BindData = async (): Promise<void> => {
let tradeId = PageExtend.QueryString("id"); let tradeId = PageExtend.QueryString("id");
let result = await TradeService.GetTradeInfo(tradeId); let result = await TradeService.GetTradeInfo(tradeId);