變壓器位置with範圍展示
yuanhung
2016-08-16 e2f1791e877f9c008055154361eac1d11b79c83f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
var sitename = "..";
 
function twdQuery(qconfig, gridHandler)
{
    var result = [];
 
    this.queryAPI = function (config,paramIn, notifyWhenResoult) {
        var syn = false;
      //  if (typeof (notifyWhenResoult) != "undefined") syn = true;
    $.ajax({
        url: sitename + '/fmquery/' + config.p0 + '/' + config.p1 + '/' + config.cnd,
        
        dataType: 'json',
        data: qconfig,
        //crossDomain: true,
        async: syn
    }).success(function (data) {
 
        result.splice(0, result.length);
        result.push(data);
        if (typeof (gridHandler) != "undefined")
            gridHandler(data);
        if (typeof (notifyWhenResoult) != "undefined")
            notifyWhenResoult(data, paramIn);
        
    });
}
 
    
this.getResult = function () {
    if (result.length == 0) return result;
    return result[0];
    }
}
 
function twdQueryInfo(notifyWhenResoult) {
    var schema = [];
 
this.queryInfoAPI = function (config) {
        $.ajax({
            url: sitename + '/fmqueryinfo',
 
            dataType: 'json',
            //data:config,
            //crossDomain: true,
            async: false
        }).success(function (data) {
            //schema.splice(0, schema.length);
            schema.push(data);
            //debuggr;
            if (typeof (notifyWhenResoult) != "undefined")
                notifyWhenResoult(data);
 
        });
    }
 
 
this.getSchema = function () {
    if (schema.length == 0) return schema;
    return schema[0];
}
this.queryInfoAPI();
 
}
 
 
 
//--
function addressQuery(gridHandler) {
    var result = [];
 
    this.queryAPI = function (config, paramIn, notifyWhenResoult) {
        var syn = false;
        //  if (typeof (notifyWhenResoult) != "undefined") syn = true;
        $.ajax({
            url: sitename + '/fmquery/' + config.p0 + '/' + config.p1 + '/' + config.cnd,
 
            dataType: 'json',
            //data:config,
            //crossDomain: true,
            async: syn
        }).success(function (data) {
 
            result.splice(0, result.length);
            result.push(data);
            if (typeof (gridHandler) != "undefined")
                gridHandler(data);
            if (typeof (notifyWhenResoult) != "undefined")
                notifyWhenResoult(data, paramIn);
 
        });
    }
 
 
    this.getResult = function () {
        if (result.length == 0) return result;
        return result[0];
    }
}
function wonderQuery(gridHandler) {
    var result = [];
 
    this.queryAPI = function (config, paramIn, notifyWhenResoult) {
        var syn = false;
        //  if (typeof (notifyWhenResoult) != "undefined") syn = true;
        $.ajax({
            url: sitename + '/fmquery/' + config.p0 + '/' + config.p1 + '/' + config.cnd,
 
            dataType: 'json',
            //data:config,
            //crossDomain: true,
            async: syn
        }).success(function (data) {
 
            result.splice(0, result.length);
            result.push(data);
            if (typeof (gridHandler) != "undefined")
                gridHandler(data);
            if (typeof (notifyWhenResoult) != "undefined")
                notifyWhenResoult(data, paramIn);
 
        });
    }
 
 
    this.getResult = function () {
        if (result.length == 0) return result;
        return result[0];
    }
}