e2582b7053b4a11031b43c5cbb885c282ccaad14.svn-base 921 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /***********************************装备查询******************************************/
  2. $(function(){
  3. });
  4. function SPQueryNo(){
  5. //工器具类型ID
  6. var instrumentTypeId =$('#instrumentTypeId').val();
  7. //单位编码
  8. var deptCode =$('#deptCode').val();
  9. //下面是装备参数的List了
  10. //ID
  11. var canshuId =$('#canshuId').val();
  12. //参数值
  13. var columnvalue =$('#columnvalue').val();
  14. var params = {
  15. instrumentTypeId : instrumentTypeId,
  16. deptCode : deptCode,
  17. canshuId : canshuId,
  18. columnvalue : columnvalue,
  19. };
  20. $.ajax({//接口
  21. url : $.pathname() + '/ws/alertToImpl/AlertToImplService/queryZhuangbeiNum/',
  22. type : 'post',
  23. timeout : 15000,
  24. data : params,
  25. dataType : 'json',
  26. success : function(data) {
  27. alert("发送成功!");
  28. },
  29. error : function(e) {
  30. $.messager.alert('系统提示信息', '访问服务失败!', 'error');
  31. }
  32. });
  33. }