Ver código fonte

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

长阳分支推送专用
ndbs 2 anos atrás
pai
commit
67720d1cd4
2 arquivos alterados com 5 adições e 2 exclusões
  1. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_NewWorkFlow/Views/NWFProcess/NWFContainerForm.js
  2. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue

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

@@ -614,7 +614,10 @@ var bootstrap = function ($, learun) {


// 加载审批按钮 // 加载审批按钮
var $signBtn = $('#sign'); 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') { if (_item.isHide != '1') {
var _class = ' btn-warning'; var _class = ' btn-warning';
if (_item.code == 'agree') { if (_item.code == 'agree') {


+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue Ver arquivo

@@ -32,7 +32,7 @@
size="lg" size="lg"
block block
> >
{{ button.name }}
{{ button.name=="同意"?"领导审批":button.name }}
</l-button> </l-button>
</view> </view>




Carregando…
Cancelar
Salvar