1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| /**
| *
| * @param param
| */
| testDevice = function(param){
| $.ajax({
| type:"POST",
| contentType:"application/json;charset=UTF-8",
| url:"/sc2023/gateway/test/deviceTest",
| data:JSON.stringify(param),
| success:function(result){
| $alert(result);
| },
| error:function(result){
| $alert(result);
| }
| })
| }
|
|