diff --git a/AMESCoreStudio.Web/Controllers/BASController.cs b/AMESCoreStudio.Web/Controllers/BASController.cs index 9f9676e5..7d4a3e3a 100644 --- a/AMESCoreStudio.Web/Controllers/BASController.cs +++ b/AMESCoreStudio.Web/Controllers/BASController.cs @@ -158,7 +158,7 @@ namespace AMESCoreStudio.Web.Controllers private async Task GetRuleStationList(int id) { - var result = await _basApi.GetRuleStationsByFlow(id); + var result = await _basApi.GetRuleStationsByFlow(id, 0, 10); var RuleStationItems = new List(); for (int i = 0; i < result.Count; i++) @@ -170,7 +170,7 @@ namespace AMESCoreStudio.Web.Controllers private async Task GetNextStationList(int id) { - var result = await _basApi.GetRuleStationsByFlow(id); + var result = await _basApi.GetRuleStationsByFlow(id, 0, 10); var NextStationItems = new List(); for (int i = 0; i < result.Count; i++) diff --git a/AMESCoreStudio.Web/Views/BAS/BAS011.cshtml b/AMESCoreStudio.Web/Views/BAS/BAS011.cshtml index 0da6543a..2451a576 100644 --- a/AMESCoreStudio.Web/Views/BAS/BAS011.cshtml +++ b/AMESCoreStudio.Web/Views/BAS/BAS011.cshtml @@ -189,7 +189,7 @@ class: 'layui-btn-normal', handler: function () { var id = flowId.value; - hg.open('新增流程站別', '/BAS/BAS011C/' + id, 600, 400); + hg.open('新增流程站別規則', '/BAS/BAS011C/' + id, 600, 400); } } ];