<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">function info_test(compid, city_name, comp_name, type) {
    var temp;
    var data = {
        'compid': compid,
        'city_name': city_name,
        'comp_name': comp_name,
        'type': type
    };
    $.ajax({
        type: "get",
        dataType: "json",
        async: false,
        url: '//e.12580.tv/api/info/info',
        data: data,
        success: function (data) {
            if (data != "") {
                //temp = eval("(" + temp + ")");
                //console.log(data);
                temp = data;
            } else {
                temp = "";
            }
        }
    });
    return temp;
};</pre></body></html>