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
|
| initStore();
|
| setInterval(function () {
| queryCrnCurrent();
| },1000);
|
|
| var CrnDatas = null;
| function queryCrnCurrent() {
| $.ajax({
| // url: 'http://47.97.1.152:58080/jkwcs/three/query/crn/cache/v1',
| url: 'http://localhost:9090/jkwcs/three/query/crn/cache/v1',
| type: "GET",
| data: {},
| success: function (res) {
| CrnDatas = res.data;
| }
| })
| }
|
| var Store3DData;
| function initStore() {
| $.ajax({
| // url: 'http://47.97.1.152:58080/jkwcs/three/init/store/v1',
| url: 'http://localhost:9090/jkwcs/three/init/store/v1',
| type: "POST",
| data: {},
| // async: false,
| success: function (res) {
| console.log(res)
| Store3DData = res;
| }
| })
|
| }
|
|