zhanmingkan
2022-05-17 18eabf15daa1876b5200659e8fac24b2bd76ff39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//获取全部
function getRoamAll(){
    $.ajax({
        type : "post",
        url : "../../easyAPI/roam/getRoam.action",
        contentType : "application/json;charset=utf-8",
        success : function(data) {
            showRoams(data);
        },
        error : function(XMLHttpRequest, textStatus, errorThrown) {
            console.log("获取路径信息失败!");
        }
    });
}