瀏覽代碼

配置文件修改

zhongxiaoyu 2 年之前
父節點
當前提交
a9d66964b7
共有 3 個文件被更改,包括 16 次插入16 次删除
  1. 3 3
      public/config.js
  2. 10 10
      public/configLoader.js
  3. 3 3
      typings/global.d.ts

+ 3 - 3
public/config.js

@@ -1,12 +1,12 @@
 /* 轮询间隔 */
-const LOOP_INTERVAL = {
+var LOOP_INTERVAL = {
   airport: 15 * 1000,
   flight: 15 * 1000,
   waybill: 15 * 1000,
   goods: 15 * 1000,
 }
 
-const DATACONTENT_ID = {
+var DATACONTENT_ID = {
   /***-----登录------***/
   loginId: 36, //登录-获取权限-id
 
@@ -226,7 +226,7 @@ const DATACONTENT_ID = {
   nodeAxisDesc: 90, // 节点统计指示器名称解释
 }
 
-const SERVICE_ID = {
+var SERVICE_ID = {
   /***-----账号管理------***/
   accountScId: 17, //账号管理-增删改
   roleScId: 16, //账号管理-角色授权-增删改

+ 10 - 10
public/configLoader.js

@@ -3,19 +3,19 @@ baseConfig.type = 'text/javascript'
 baseConfig.src = './baseConfig.js'
 document.head.appendChild(baseConfig)
 
-const config = document.createElement('script')
-config.id = 'configJS'
-config.type = 'text/javascript'
-config.src = './config.js?t=' + new Date().getTime()
-document.head.appendChild(config)
+setConfigJS()
 
 if (!window.configLoadLoop) {
   window.configLoadLoop = setInterval(function () {
     document.head.removeChild(document.getElementById('configJS'))
-    const config = document.createElement('script')
-    config.id = 'configJS'
-    config.type = 'text/javascript'
-    config.src = './config.js?t=' + new Date().getTime()
-    document.head.appendChild(config)
+    setConfigJS()
   }, 60 * 1000)
 }
+
+function setConfigJS() {
+  const config = document.createElement('script')
+  config.id = 'configJS'
+  config.type = 'text/javascript'
+  config.src = './config.js?t=' + new Date().getTime()
+  document.head.appendChild(config)
+}

+ 3 - 3
typings/global.d.ts

@@ -8,9 +8,9 @@ declare global {
   declare let defineOptions: any
   declare let $ref: any
   declare const PLATFROM_CONFIG: any
-  declare const LOOP_INTERVAL: any
-  declare const DATACONTENT_ID: any
-  declare const SERVICE_ID: any
+  declare var LOOP_INTERVAL: any
+  declare var DATACONTENT_ID: any
+  declare var SERVICE_ID: any
 }
 
 export {}