#
luxiaotao1123
2021-12-13 9233b9a9c7c2e760d519d4ca0ccf0868b57fb1cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
setInterval("queryTaskCurrent()",1000);
function queryTaskCurrent() {
    $.ajax({
        // url: 'http://47.97.1.152:58080/jkwcs/three/init/store/v1',
        url: 'http://localhost:9090/jkwcs/three/query/task/current/v1',
        type: "GET",
        data: {},
        async: false,
        success: function (res) {
            TaskDatas = res.data;
        }
    })
}
 
var TaskDatas = null;