1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /***********************************装备查询******************************************/
- $(function(){
-
- });
- function SPQueryNo(){
- //工器具类型ID
- var instrumentTypeId =$('#instrumentTypeId').val();
- //单位编码
- var deptCode =$('#deptCode').val();
- //下面是装备参数的List了
- //ID
- var canshuId =$('#canshuId').val();
- //参数值
- var columnvalue =$('#columnvalue').val();
-
- var params = {
- instrumentTypeId : instrumentTypeId,
- deptCode : deptCode,
- canshuId : canshuId,
- columnvalue : columnvalue,
- };
-
-
- $.ajax({//接口
- url : $.pathname() + '/ws/alertToImpl/AlertToImplService/queryZhuangbeiNum/',
- type : 'post',
- timeout : 15000,
- data : params,
- dataType : 'json',
- success : function(data) {
- alert("发送成功!");
- },
- error : function(e) {
- $.messager.alert('系统提示信息', '访问服务失败!', 'error');
- }
- });
- }
|