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
| <!DOCTYPE html>
| <html lang="en">
|
| <head>
| <meta charset="UTF-8">
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| <title>Document</title>
| <script src="./js/jquery.js"></script>
| <script>
|
| //jquery鍏ㄥ眬閰嶇疆
| $.ajaxSetup({
| dataType: "json",
| cache: false,
| headers: {
| },
| xhrFields: {
| withCredentials: true
| },
| crossDomain: true,
| complete: function (xhr) {
| }
| });
|
|
| function test8082() {
| $.ajax({
| url: 'http://71.3.21.232:8082/res/ZiYuan/selectResMainInfojoinCatalog?_dc=1629968906238&title=&resourceclass=&resourcestatus=0&catlogid=&catlogcode=&catlogtitle=&createuserid=&faburen=&pubdateBegin=&pubdatefinish=&auditstatus=&sharprotocol=&page=1&start=0&limit=10',
| dataType: "json",
| type: "get",
| success: function (data) {
| console.log(data)
| }
| });
| }
| function test80821() {
| $.ajax({
| // url: 'http://71.3.21.232:8082/api/monitor/jitmonitor/getGisResNumByResStatus',
| url: 'http://18.1.1.231:8082/api/monitor/jitmonitor/getGisResNumByResStatus',
| dataType: "json",
| type: "get",
| success: function (data) {
| console.log(data)
| }
| });
| }
| </script>
| </head>
|
| <body>
|
| </body>
|
| </html>
|
|