12345678910111213141516171819 |
- /**
- * 公用GET请求
- * chenchuang
- * 20201019
- */
- var MethodGetService={
- methodGet:function(url){
- var ret = null;
- var functionUrl = url;
- ServiceOperation.send(ServiceOperation.MethodGet, ServiceOperation.getFullUrl(functionUrl),"", false, function(data){
- if(!data.success){
- DialogOperation.alertDialog(data.message);
- }else{
- ret = data.result;
- }
- }, false, false);
- return ret;
- }
- }
|