diff --git a/Service/Application.Domain/Enum/SkillEnum.cs b/Service/Application.Domain/Enum/SkillEnum.cs index 91daae9..bf920b4 100644 --- a/Service/Application.Domain/Enum/SkillEnum.cs +++ b/Service/Application.Domain/Enum/SkillEnum.cs @@ -14,6 +14,5 @@ public static class SkillEnum AGILE,//敏捷术 RIDI,//乘骑术 WING,//翼形术 - Collect,//采集术 } } \ No newline at end of file diff --git a/Service/Application.Web/Controllers/Map/MapController.cs b/Service/Application.Web/Controllers/Map/MapController.cs index c20fb4d..8f15d0e 100644 --- a/Service/Application.Web/Controllers/Map/MapController.cs +++ b/Service/Application.Web/Controllers/Map/MapController.cs @@ -699,7 +699,7 @@ public class MapController : ControllerBase 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) { return PoAction.Message("未学习采集术!"); diff --git a/Web/src/pages/trade/info.vue b/Web/src/pages/trade/info.vue index 7ad0b98..d9bc808 100644 --- a/Web/src/pages/trade/info.vue +++ b/Web/src/pages/trade/info.vue @@ -96,8 +96,6 @@ onMounted(async () => { } }) - - const BindData = async (): Promise => { let tradeId = PageExtend.QueryString("id"); let result = await TradeService.GetTradeInfo(tradeId);