diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_NewWorkFlow/Views/NWFProcess/NWFContainerForm.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_NewWorkFlow/Views/NWFProcess/NWFContainerForm.js index 31607c8ab..4061e2673 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_NewWorkFlow/Views/NWFProcess/NWFContainerForm.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_NewWorkFlow/Views/NWFProcess/NWFContainerForm.js @@ -614,7 +614,10 @@ var bootstrap = function ($, learun) { // 加载审批按钮 var $signBtn = $('#sign'); - $.each(nwflow.currentNode.btnList || [{ id: "1", name: "同意", code: "agree", file: "1", next: "1" }, { id: "2", name: "不同意", code: "disagree", file: "1", next: "1" }], function (_index, _item) { + $.each(nwflow.currentNode.btnList || [{ id: "1", name: "领导审批", code: "agree", file: "1", next: "1" }, { id: "2", name: "不同意", code: "disagree", file: "1", next: "1" }], function (_index, _item) { + if (_item.name == "同意") { + _item.name = "领导审批"; + } if (_item.isHide != '1') { var _class = ' btn-warning'; if (_item.code == 'agree') { diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue index 7b8c68d9e..138efabbe 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue @@ -32,7 +32,7 @@ size="lg" block > - {{ button.name }} + {{ button.name=="同意"?"领导审批":button.name }}