Browse Source

流程任务-审批页面 同意改为-领导审批(假)

娄底高职分支
ndbs 2 years ago
parent
commit
bbea9d2bfa
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_NewWorkFlow/Views/NWFProcess/NWFContainerForm.js

+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_NewWorkFlow/Views/NWFProcess/NWFContainerForm.js View File

@@ -616,7 +616,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') {


Loading…
Cancel
Save