From 059270c12f452fcc3344b826f35295fd7c20906e Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期二, 21 三月 2023 08:31:37 +0800 Subject: [PATCH] # --- static/js/data/Asrs.js | 31 ++++++++++++++++++++++++++++--- 1 files changed, 28 insertions(+), 3 deletions(-) diff --git a/static/js/data/Asrs.js b/static/js/data/Asrs.js index 4875c46..57ea068 100644 --- a/static/js/data/Asrs.js +++ b/static/js/data/Asrs.js @@ -1,14 +1,27 @@ -setInterval(function () { +initStore(); + +let interval = setInterval(function () { queryCrnCurrent(); + queryStaCurrent(); },1000); +var Store3DData; +function initStore() { + $.ajax({ + url: top.baseUrl + '/three/init/store/v1', + type: "POST", + data: {}, + success: function (res) { + Store3DData = res; + } + }) +} var CrnDatas = null; function queryCrnCurrent() { $.ajax({ - // url: 'http://47.97.1.152:58080/jkwcs/three/init/store/v1', - url: 'http://localhost:9090/jkwcs/three/query/crn/cache/v1', + url: top.baseUrl + '/three/query/crn/cache/v1', type: "GET", data: {}, success: function (res) { @@ -16,3 +29,15 @@ } }) } + +var StaDatas = null; +function queryStaCurrent() { + $.ajax({ + url: top.baseUrl + '/three/query/sta/cache/v1', + type: "GET", + data: {}, + success: function (res) { + StaDatas = res.data; + } + }) +} -- Gitblit v1.9.1