优化流程表单模板,支持从表单进入显示审批意见框

This commit is contained in:
thinkgem
2024-08-16 18:44:26 +08:00
parent b499bb951b
commit 60d6b9c1cf

View File

@@ -41,8 +41,7 @@
<% include('/templates/modules/gen/include/formControl.html'){} %>
<% include('/templates/modules/gen/include/formChildTable.html'){} %>
<% if(toBoolean(table.optionMap['isBpmForm'])){ %>
\<% if(isNotBlank(${className}.bpm.taskId)){ %>
<div class="row">
<div class="row taskComment hide">
<div class="col-xs-12">
<div class="form-group">
<label class="control-label col-xs-2">${text('审批意见')}</label>
@@ -52,7 +51,6 @@
</div>
</div>
</div>
\<% } %>
<${'#'}bpm:nextTaskInfo bpmEntity="\${${className}}" />
<% } %>
</div>
@@ -89,7 +87,11 @@ $('#btnDraft').click(function(){
});
// 流程按钮操作事件
BpmButton = window.BpmButton || {};
BpmButton.init = function(task){}
BpmButton.init = function(task){
if (task.status != '2') {
$('.taskComment').removeClass('hide');
}
}
BpmButton.complete = function($this, task){
$('#status').val(Global.STATUS_AUDIT);
};