同步代码编写完毕

This commit is contained in:
zer0Black
2023-05-09 14:29:21 +08:00
parent a06a6e93f1
commit 960ea0603e
523 changed files with 206 additions and 113883 deletions
@@ -1,19 +0,0 @@
function checkModelKey(field, modelId){
var host = document.domain;
if(host.indexOf('localhost')>=0){
host = 'http://localhost:7060/library/api';
}else{
host = '/library/api';
}
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;
}