工作流相关提交

This commit is contained in:
zer0Black
2023-04-17 15:16:53 +08:00
parent 8350f9688a
commit 0d878d45cb
712 changed files with 226802 additions and 16 deletions
@@ -0,0 +1,19 @@
function checkModelKey(field, modelId){
var host = document.domain;
if(host.indexOf('localhost')>=0){
host = 'http://localhost:17210/bat-wkflow';
}else{
host = '/bat-wkflow';
}
var msg = '';
jQuery.ajax({
url:host + '/check_define_key',
data:{modelId:modelId, key: field },
async:false,
dataType:'json',
success:function(data){
msg = data.result;
}
})
return msg;
}