jiazx0107@163.com
2023-11-09 eebab358e2882fc7e3aeec152db5151a6bd0be02
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);
        }
    })
}