From d79709bd9acf397c8ec57edfaffff694e235d713 Mon Sep 17 00:00:00 2001 From: Marvin Date: Thu, 10 Mar 2022 18:42:03 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E6=B5=81=E7=A8=8B=E7=AB=99?= =?UTF-8?q?=E5=88=A5=E8=A6=8F=E5=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AMESCoreStudio.Web/Controllers/BASController.cs | 4 ++-- AMESCoreStudio.Web/Views/BAS/BAS011.cshtml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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); } } ];