修改以前的垃圾代码

This commit is contained in:
xuetao.li
2023-04-18 15:46:20 +08:00
parent e796a0000e
commit 4ce40d9553
528 changed files with 35 additions and 113978 deletions
@@ -1,19 +0,0 @@
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;
}