Browse Source

定版 2.0

andy 1 year ago
parent
commit
90c4630d49
27 changed files with 127 additions and 445 deletions
  1. 2 0
      .gitignore
  2. 11 0
      Dockerfile
  3. 11 0
      mainFactory/pom.xml
  4. 0 1
      mainFactory/src/main/java/org/bfkj/MainFactoryApplication.java
  5. 3 3
      mainFactory/src/main/java/org/bfkj/protocol/ElasticHandler.java
  6. 11 9
      mainFactory/src/main/java/org/bfkj/protocol/FtpHandler.java
  7. 3 3
      mainFactory/src/main/java/org/bfkj/protocol/MyKafKa.java
  8. 13 1
      mainFactory/src/main/java/org/bfkj/utils/RandomGraphic.java
  9. 7 48
      mainFactory/src/main/resources/application-120.yml
  10. 15 19
      mainFactory/src/main/resources/application-dev.yml
  11. 0 61
      mainFactory/src/main/resources/application-prod.yml
  12. 0 92
      mainFactory/src/main/resources/application-prod2.yml
  13. 51 2
      mainFactory/src/main/resources/application.yml
  14. BIN
      mainFactory/src/main/resources/font/SourceHanSansSC-Regular-2.otf
  15. 0 139
      mainFactory/src/main/resources/static/config.js
  16. BIN
      mainFactory/src/main/resources/static/favicon.ico
  17. 0 1
      mainFactory/src/main/resources/static/index.html
  18. 0 0
      mainFactory/src/main/resources/static/static/css/chunk-62b675ea.17a7dbcc.css
  19. 0 0
      mainFactory/src/main/resources/static/static/css/chunk-elementUI.0ae24586.css
  20. 0 0
      mainFactory/src/main/resources/static/static/css/chunk-libs.bef63a38.css
  21. BIN
      mainFactory/src/main/resources/static/static/fonts/element-icons.535877f5.woff
  22. BIN
      mainFactory/src/main/resources/static/static/fonts/element-icons.732389de.ttf
  23. BIN
      mainFactory/src/main/resources/static/static/img/bg.7776f3f6.jpg
  24. BIN
      mainFactory/src/main/resources/static/static/img/nodata.22b989c0.png
  25. BIN
      mainFactory/src/main/resources/static/static/img/nopage.0e91ade0.png
  26. 0 0
      mainFactory/src/main/resources/static/static/js/chunk-elementUI.e94dd283.js
  27. 0 66
      mainFactory/src/main/resources/static/staticConfig.js

+ 2 - 0
.gitignore

@@ -1,2 +1,4 @@
 /.idea/
 /mainFactory/target/
+*.http
+*.iml

+ 11 - 0
Dockerfile

@@ -0,0 +1,11 @@
+FROM l7871878100/openjdk:jdk-17-ubuntu
+#FROM l7871878100/openjdk:jdk-17-centos
+
+RUN mkdir /app
+
+COPY ./mainFactory/target/mainFactory-1.0-SNAPSHOT.jar /app/app.jar
+
+ENV ACTIVE=default
+EXPOSE 8080
+
+ENTRYPOINT ["java","-jar","-Dspring.profiles.active=${ACTIVE}","/app/app.jar"]

+ 11 - 0
mainFactory/pom.xml

@@ -30,6 +30,12 @@
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-web</artifactId>
+<!--            <exclusions>-->
+<!--                <exclusion>-->
+<!--                    <groupId>org.springframework.boot</groupId>-->
+<!--                    <artifactId>spring-boot-starter-logging</artifactId>-->
+<!--                </exclusion>-->
+<!--            </exclusions>-->
         </dependency>
 
         <dependency>
@@ -135,6 +141,11 @@
             <artifactId>nashorn-core</artifactId>
             <version>15.4</version>
         </dependency>
+<!--        <dependency>-->
+<!--            <groupId>cn.hutool</groupId>-->
+<!--            <artifactId>hutool-all</artifactId>-->
+<!--            <version>5.8.18</version>-->
+<!--        </dependency>-->
     </dependencies>
 
     <build>

+ 0 - 1
mainFactory/src/main/java/org/bfkj/MainFactoryApplication.java

@@ -296,7 +296,6 @@ public class MainFactoryApplication implements InitializingBean {
             AppConfig.REMOTE_DB_LOG_CONNECT = MapTools.objToJSONStr(maplogDB);
             AppConfig.serviceURL = remoteDB.getServiceURL();
             AppConfig.SOURCE_DATA = enableSourceData;
-
         } catch (Exception e) {
             logger.error("配置文件中,连接数据库信息错误: {}", e.getMessage());
         }

+ 3 - 3
mainFactory/src/main/java/org/bfkj/protocol/ElasticHandler.java

@@ -64,7 +64,7 @@ public class ElasticHandler {
                 return false;
             }
         }
-        String dataJSON = "";
+        String dataJSON;
         try {
             if (dataContent.size() > 0) {
                 IndexRequest request = new IndexRequest(indexName);
@@ -87,12 +87,12 @@ public class ElasticHandler {
             try {
                 restHighLevelClient.close();
             } catch (IOException ex) {
-                System.out.println("es数据发送异常: ".concat(LogUtils.getException(e)));
+                System.err.println("es数据发送异常: ".concat(LogUtils.getException(e)));
             }
             try {
                 Thread.sleep(1000 * 6);
             } catch (InterruptedException ex) {
-                System.out.println("es数据发送异常: ".concat(LogUtils.getException(e)));
+                System.err.println("es数据发送异常: ".concat(LogUtils.getException(e)));
             }
             restHighLevelClient = null;
             return  false;

+ 11 - 9
mainFactory/src/main/java/org/bfkj/protocol/FtpHandler.java

@@ -12,11 +12,12 @@ import java.io.File;
 import java.io.FileOutputStream;
 import java.nio.charset.StandardCharsets;
 import java.nio.file.Files;
-import java.text.SimpleDateFormat;
 import java.time.Duration;
 import java.util.*;
 import java.util.zip.GZIPInputStream;
 
+import static org.apache.commons.net.ftp.FTP.BINARY_FILE_TYPE;
+
 /*es协议*/
 public class FtpHandler {
 
@@ -33,12 +34,13 @@ public class FtpHandler {
         ftp.connect(Objects.toString(config.get("host")), Objects.nonNull(config.get("port")) ? Integer.parseInt(Objects.toString(config.get("port"))) : 21);
         //common-net的ftpclient默认是使用ASCII_FILE_TYPE,文件会经过ASCII编码转换,所以可能会造成文件损坏
         ftp.login(Objects.toString(config.get("username")), Objects.toString(config.get("password")));//登录
-        ftp.setConnectTimeout(Objects.nonNull(config.get("timeOut")) ? Integer.parseInt(Objects.toString(config.get("timeOut"))) : (1000 * 120)); //120秒
-        ftp.setDataTimeout(Duration.ofSeconds(Objects.nonNull(config.get("timeOut")) ? Integer.parseInt(Objects.toString(config.get("timeOut"))) : (1000 * 120))); //120秒
+        String timeOut = "timeOut";
+        ftp.setConnectTimeout(Objects.nonNull(config.get(timeOut)) ? Integer.parseInt(Objects.toString(config.get(timeOut))) : (1000 * 120)); //120秒
+        ftp.setDataTimeout(Duration.ofSeconds(Objects.nonNull(config.get(timeOut)) ? Integer.parseInt(Objects.toString(config.get(timeOut))) : (1000 * 120))); //120秒
         ftp.setBufferSize(1024 * 1024 * 10); //每次读取文件流时缓存数组的大小
         ftp.setRemoteVerificationEnabled(false); // 取消服务器获取自身Ip地址和提交的host进行匹配
         ftp.setControlEncoding(Objects.nonNull(config.get("encoding")) ? config.get("encoding").toString() : "UTF-8"); //设置ftp编码
-        ftp.setFileType(FTPClient.BINARY_FILE_TYPE);//设置文件编码类型为二进制文件,
+        ftp.setFileType(BINARY_FILE_TYPE);//设置文件编码类型为二进制文件,
         return ftp;
     }
 
@@ -63,7 +65,7 @@ public class FtpHandler {
             String basePath = Objects.toString(connectConfigMaps.get("basePath")); //根路径
             ftp = createFtpClient(connectConfigMaps);
             if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
-                System.out.println("未连接到FTP,用户名或密码错误。");
+                System.err.println("未连接到FTP,用户名或密码错误。");
                 ftp.logout();
                 return MapTools.processFail("未连接到FTP,用户名或密码错误。");
             }
@@ -73,14 +75,14 @@ public class FtpHandler {
             String rootPath = ftp.printWorkingDirectory(); //ftp根目录
             FTPFile[] ftpFiles = ftp.listFiles(rootPath );
             if (ftpFiles.length == 0) {
-                System.out.println("没有找到文件");
+                System.err.println("没有找到文件");
                 ftp.logout();
                 return MapTools.processFail("没有找到文件");
             }
             List<File> files = new ArrayList<>();
             for (FTPFile ftpFile : ftpFiles) {
                 String tpFileName = ftpFile.getName();
-                System.out.println(tpFileName);
+                System.err.println(tpFileName);
                 if (fileList.contains(tpFileName)){
                     String path = System.getProperty("user.dir") + File.separator + "ftp" + File.separator + ftpFile.getName();
                     File targetFile = new File(path);
@@ -88,7 +90,7 @@ public class FtpHandler {
                     try ( FileOutputStream fileOutputStream = new FileOutputStream(targetFile);){
                         ftp.retrieveFile(ftpFile.getName(), fileOutputStream);
                     }catch (Exception e){
-                        System.out.println("数据下载异常".concat(LogUtils.getException(e)));
+                        System.err.println("数据下载异常".concat(LogUtils.getException(e)));
                     }
                 }
             }
@@ -108,7 +110,7 @@ public class FtpHandler {
                         }
                         fileContent.add(baos.toString(StandardCharsets.UTF_8));
                     }catch (Exception e){
-                        System.out.println("数据解压异常".concat(LogUtils.getException(e)));
+                        System.err.println("数据解压异常".concat(LogUtils.getException(e)));
                     }
                 }
             }

+ 3 - 3
mainFactory/src/main/java/org/bfkj/protocol/MyKafKa.java

@@ -110,19 +110,19 @@ public class MyKafKa {
         while (isPool){
             try {
                 Thread.sleep(1);
-            } catch (InterruptedException e) {
+            } catch (InterruptedException ignore) {
             }
         }
         if (Objects.nonNull(consumer)) {
             consumer.close();
             consumer = null;
-            System.out.println("consumer关闭");
+            System.err.println("consumer关闭");
         }
 
         if (Objects.nonNull(producer)) {
             producer.close();
             producer = null;
-            System.out.println("consumer关闭");
+            System.err.println("consumer关闭");
         }
     }
 

+ 13 - 1
mainFactory/src/main/java/org/bfkj/utils/RandomGraphic.java

@@ -1,12 +1,15 @@
 package org.bfkj.utils;
 
 import org.apache.tomcat.util.codec.binary.Base64;
+import org.springframework.core.io.ClassPathResource;
 
 import javax.imageio.ImageIO;
 import java.awt.*;
 import java.awt.geom.AffineTransform;
 import java.awt.image.BufferedImage;
 import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.security.NoSuchAlgorithmException;
 import java.security.SecureRandom;
@@ -27,6 +30,7 @@ public class RandomGraphic {
         } catch (NoSuchAlgorithmException e) {
         }
     }
+
     /**
      * 使用指定源生成验证码
      *
@@ -91,7 +95,15 @@ public class RandomGraphic {
         shear(g2, w, h, c);// 使图片扭曲
         g2.setColor(getRandColor(100, 160));
         int fontSize = h - 4; //
-        Font font = new Font("Algerian", Font.ITALIC, fontSize);
+
+        Font font = null;
+        try {
+            File fontFile = new ClassPathResource("font/SourceHanSansSC-Regular-2.otf").getFile();
+            font = Font.createFont(Font.TRUETYPE_FONT, fontFile);
+        } catch (FontFormatException | FileNotFoundException e) {
+            font = new Font("Algerian", Font.ITALIC, fontSize);
+        }
+
         g2.setFont(font);
         char[] chars = code.toCharArray();
         for (int i = 0; i < verifySize; i++) {

+ 7 - 48
mainFactory/src/main/resources/application-120.yml

@@ -1,14 +1,10 @@
 server:
-  port: ${PORT:18400}
+  port: 8080
   servlet:
     encoding:
       charset: UTF-8
       force: true
       enabled: true
-  codec:
-    max-in-memory-size: -1
-  application:
-    name: mainFactory
 spring:
   mvc:
     view:
@@ -16,54 +12,17 @@ spring:
       suffix: .html
 
 log:
-  url: jdbc:mysql://120.26.64.82:3306/yq_2.0
+  url: jdbc:mysql://120.26.64.82:3306/mid_log
   title: root
   cipher: 123@bigdata
   type: com.mysql.cj.jdbc.Driver
 
-#mydb:
-#  url: ${MYDB_URL:jdbc:mysql://rm-bp12c6mmk845m73p48o.mysql.rds.aliyuncs.com:3306/test_cen}
-#  title: ${MYDB_USER:bf_dev_epi}
-#  cipher: ${MYDB_PASSWD:Bfepi2021(}
-#  type: ${MYDB_DRIVER:com.mysql.cj.jdbc.Driver}
-#  serviceURL: ${MY_SERVICE_URL:127.0.0.1:8080}
-
-
 mydb:
-  url: ${MYDB_URL:jdbc:mysql://10.211.66.16:3163/DISACenter_2}
-  title: ${MYDB_USER:root}
-  cipher: ${MYDB_PASSWD:QtrmuqDw^bJu$}
-  type: ${MYDB_DRIVER:com.mysql.cj.jdbc.Driver}
-  serviceURL: ${MY_SERVICE_URL:127.0.0.1:8080}
-
-#mydb:
-#  url: ${MYDB_URL:jdbc:mysql://120.26.64.82:3306/DISACenter_2}
-#  title: ${MYDB_USER:root}
-#  cipher: ${MYDB_PASSWD:123@bigdata}
-#  type: ${MYDB_DRIVER:com.mysql.cj.jdbc.Driver}
-#  serviceURL: ${MY_SERVICE_URL:127.0.0.1:8080}
-#mydb:
-#  url: ${MYDB_URL:jdbc:mysql://120.26.64.82:3306/db2_center}
-#  title: ${MYDB_USER:root}
-#  cipher: ${MYDB_PASSWD:123@bigdata}
-#  type: ${MYDB_DRIVER:com.mysql.cj.jdbc.Driver}
-#  serviceURL: ${MY_SERVICE_URL:127.0.0.1:17000}
-
-
-
-
-
-
-#isEs:
-#  open: true
-#  scheme: http
-#  hostname: 120.26.64.82
-#  port: 9200
-#  auth: false
-#  username: ""
-#  password: ""
-#  successIndexName: "success_log_center2"
-#  errorIndexName: "error_log_center2"
+  url: jdbc:mysql://120.26.64.82:3306/mid_center
+  title: root
+  cipher: 123@bigdata
+  type: com.mysql.cj.jdbc.Driver
+  serviceURL: 127.0.0.1:8080
 
 isEs:
   open: false

+ 15 - 19
mainFactory/src/main/resources/application-zxx.yml → mainFactory/src/main/resources/application-dev.yml

@@ -1,37 +1,34 @@
 server:
-  port: ${PORT:8046}
+  port: 8080
   servlet:
     encoding:
       charset: UTF-8
       force: true
       enabled: true
-  codec:
-    max-in-memory-size: -1
-  application:
-    name: mainFactory
 spring:
-  mvc:
-    view:
-      prefix: /
-      suffix: .html
+  application:
+    name: data-base
 
 log:
-  url: jdbc:mysql://10.199.7.11:3306/DPFBLOG
-  title: bigdata
-  cipher: ml9*pO4866
+  url: jdbc:mysql://localhost/test_cen
+  title: root
+  cipher: 123456
   type: com.mysql.cj.jdbc.Driver
 
 mydb:
-  url: ${MYDB_URL:jdbc:mysql://10.199.7.11:3306/DISACenter_2}
-  title: ${MYDB_USER:bigdata}
-  cipher: ${MYDB_PASSWD:ml9*pO4866}
-  type: ${MYDB_DRIVER:com.mysql.cj.jdbc.Driver}
-  serviceURL: ${MY_SERVICE_URL:10.199.1.11:8046}
+  url: jdbc:mysql://localhost/test_cen
+  title: midsk
+  cipher: 123456
+  type: com.mysql.cj.jdbc.Driver
+  serviceURL: 127.0.0.1:8080
+
+baseConfig:
+  sourceData: false
 
 isEs:
   open: false
   scheme: http
-  hostname: 10.211.67.175
+  hostname: 0.0.0.0
   port: 9201
   auth: true
   username: "elastic"
@@ -39,7 +36,6 @@ isEs:
   successIndexName: "success_log_center"
   errorIndexName: "error_log_center"
 
-
 service:
   pool:
     maxPoolSize: 512

+ 0 - 61
mainFactory/src/main/resources/application-prod.yml

@@ -1,61 +0,0 @@
-server:
-  port: ${PORT:18400}
-  servlet:
-    encoding:
-      charset: UTF-8
-      force: true
-      enabled: true
-  codec:
-    max-in-memory-size: -1
-  application:
-    name: mainFactory
-spring:
-  mvc:
-    view:
-      prefix: /
-      suffix: .html
-
-log:
-  url: jdbc:mysql://120.26.64.82:3306/yq_2.0
-  title: root
-  cipher: 123@bigdata
-  type: com.mysql.cj.jdbc.Driver
-mydb:
-  url: ${MYDB_URL:jdbc:mysql://10.211.66.16:3163/DISACenter_2}
-  title: ${MYDB_USER:root}
-  cipher: ${MYDB_PASSWD:QtrmuqDw^bJu$}
-  type: ${MYDB_DRIVER:com.mysql.cj.jdbc.Driver}
-  serviceURL: ${MY_SERVICE_URL:127.0.0.1:8080}
-
-#isEs:
-#  open: true
-#  scheme: http
-#  hostname: 120.26.64.82
-#  port: 9200
-#  auth: false
-#  username: ""
-#  password: ""
-#  successIndexName: "success_log_center2"
-#  errorIndexName: "error_log_center2"
-baseConfig:
-  sourceData : true
-
-isEs:
-  open: false
-  scheme: http
-  hostname: 10.211.67.175
-  port: 9201
-  auth: true
-  username: "elastic"
-  password: "TUihk5^a0J+GkI4!4"
-  successIndexName: "success_log_center"
-  errorIndexName: "error_log_center"
-
-service:
-  pool:
-    maxPoolSize: 512
-    corePoolSize: 6
-    queueCapacity: 1024
-    keepAliveSeconds: 60
-    threadNamePrefix: logthreadpool
-    waitForTasksToCompleteOnShutdown: true

+ 0 - 92
mainFactory/src/main/resources/application-prod2.yml

@@ -1,92 +0,0 @@
-spring:
-  application:
-    name: INTERFACES-GATEWAY-NEW
-  cloud:
-    nacos:
-      discovery:
-        server-addr: 10.211.67.156:8379,10.211.67.164:8631
-        namespace: public
-        group: product
-        username: nacos
-        password: 17f1f4d0bf7e4c9ea0c3d02a9e5efc50
-      config:
-        enabled: false
-
-    gateway:
-      globalcors:
-        corsConfigurations:
-          '[/**]':
-            allowedHeaders: "*"
-            allowedOrigins: "*"
-            allowCredentials: true
-            allowedMethods: "*"
-        default-filters:
-          - DedupeResponseHeader=Access-Control-Allow-Origin Access-Control-Allow-Credentials Vary, RETAIN_UNIQUE
-      discovery:
-        locator:
-          enabled: true #寮€鍚牴鎹湇鍔″悕鍔ㄦ€佽幏鍙栬矾鐢卞湴鍧€
-          lowerCaseServiceId: true
-      routes:
-        - id: GATWAY-AUTHENTICATION
-          #  uri: http://localhost:8999
-          uri: http://10.211.67.150:18046
-          predicates:
-            - Path=/**
-          filters:
-            - StripPrefix=0  # 杞彂杩囨护鍓嶇紑涓暟\
-        - id: apache
-          uri: http://10.211.67.150:8093
-          predicates:
-              # 鍖归厤璺緞杞彂
-            - Method=GET
-
-
-gatway:
-  url:
-    upload:
-      - /api/4A/GetToken
-      - /api/4A/VerificationCode
-      - /api/4A/RefreshCode
-      - /api/4A/RemoveCode
-      - /api/4A/RemoveToken
-      - /api/fs4a/Logout/v1
-      - /api/4A/LoginGetToken
-      - /api/4A/CheckLoginToken
-      - /api/4A/LoginRefreshToken
-      - /api/4A/LogoutToken
-      - /api/fs4a/Login/v1
-      - /api/fs4a/GetSystemSet/v1
-      - /api/fs4a/GetCheckCode/v1
-    guohang:
-      - /baggageDC/openApi/gettoken
-      - /baggageDC/openApi/refreshtoken
-      - /outSide/openApi/fulltrackinfo
-      - /token
-      - /kafka
-      - /foxlibc/application-token
-      - /foxlibc/sign-in
-      - /foxlibc/system/setting
-      - /foxlibc/verification-code
-
-  config:
-    jwt:
-      header-name: toekn
-      skip-a-uth-url:
-        - /api/4A/GetToken
-        - /RefreshToken
-        - /api/4A/GetSystemSet/v1
-        - /api/4A/GetCheckCode/v1
-        - /api/4A/Login/v1
-logging:
-  level:
-    org.springframework.cloud.gateway.filter.LoadBalancerClientFilter: TRACE
-feign:
-  client:
-    config:
-      default:
-        connectTimeout: 100000
-        readTimeout: 600000
-server:
-  port: 18046
-
-

+ 51 - 2
mainFactory/src/main/resources/application.yml

@@ -1,3 +1,52 @@
+server:
+  port: ${PORT:8080}
+  servlet:
+    encoding:
+      charset: UTF-8
+      force: true
+      enabled: true
 spring:
-  profiles:
-    active: prod
+  mvc:
+    view:
+      prefix: /
+      suffix: .html
+  web:
+    resources:
+      static-locations: file:/app/static
+  config:
+    additional-location: file:/app/config/
+  application:
+    name: mainFactory
+log:
+  url: ${LOG_DB_URL:jdbc:mysql://localhost:3306/DPFBLOG}
+  title: ${LOG_DB_USER:root}
+  cipher: ${LOG_DB_PASSWD:123456}
+  type: ${LOG_DB_DRIVER:com.mysql.cj.jdbc.Driver}
+
+mydb:
+  url: ${MYDB_URL:jdbc:mysql://localhost:3306/center}
+  title: ${MYDB_USER:root}
+  cipher: ${MYDB_PASSWD:123456}
+  type: ${MYDB_DRIVER:com.mysql.cj.jdbc.Driver}
+  serviceURL: ${MY_SERVICE_URL:127.0.0.1:8080}
+
+isEs:
+  open: ${ENABLE_ES:false}
+  scheme: ${ES_SCHEMA:http}
+  hostname: ${ES_HOSTNAME:localhost}
+  port: ${ES_PORT:9200}
+  auth: ${ES_AUTH:false}
+  username: ${ES_USERNAME:elastic}
+  password: ${ES_PASSWORD:}
+  successIndexName: ${ES_SUCCESS_INDEX:}
+  errorIndexName: ${ES_ERROR_INDEX:}
+
+
+service:
+  pool:
+    maxPoolSize: 512
+    corePoolSize: 6
+    queueCapacity: 1024
+    keepAliveSeconds: 60
+    threadNamePrefix: logthreadpool
+    waitForTasksToCompleteOnShutdown: true

BIN
mainFactory/src/main/resources/font/SourceHanSansSC-Regular-2.otf


+ 0 - 139
mainFactory/src/main/resources/static/config.js

@@ -1,139 +0,0 @@
-window.SERVICE_ID = {
-  sysMenuId: 1, //权限菜单
-  sysAuthId: 2, //根据用户ID或用户组ID获取权限
-  sysAllMenuId: 3, //获取全部权限
-  serTableDataId: 4, //服务设置-算法配置-获取数据源名称
-  sysUserAuthId: 5, //用户数据权限获取
-  getUserTableId: 9, //根据账号组获取账号
-  getAirpotId: 14, //获取机场三字码
-  getJqId: 10023, //获取机器维护列表
-  getTableColumnId: 18122, //获取表头
-  authTreeId: 18126, //获取表头
-  getAppId: 18133, //获取应用列表
-  roleListId: 10024, //角色列表
-  userListId: 10026, //用户管理列表
-  userAuthorizationId: 10027, //用户授权
-  depTableId: 185, //机器维护-表头
-  serTableId: 203, //服务设置-表头
-  bagTableId: 20030, //行李详情-表头
-  bagDetailId: 20027, //行李详情-表格
-  bagViewId: 20036, //航班视图-基础信息
-  changePwd: 20045, // 修改密码
-  
-  /***-----高级查询------***/
-  baggageTypeId: 86, //高级查询-特殊行李类型下拉选项查询-id
-  advancedQueryId: 30, //高级查询-数据查询-id
-  advancedQueryNew: 93, //高级查询-数据查询-id
-
-  /***-----进港管理------***/
-  arrivalAirId: 67, //进港管理-机场选择
-  arrivalTableId: 38, //进港管理-表格
-
-  /***-----离港管理------***/
-  departureAirMainId: 65, //离港管理-机场选择
-  departureTableMainId: 66, //离港管理-表格
-  departureWarningId: 18040, //离港管理-报警策略
-
-  /***-----中转进港------***/
-  departureAirId: 72, // 中转进港-机场选择
-  departureAviJoinId: 71, // 中转进港-进港承运航司
-  departureAviLeaveId: 74, // 中转进港-离港承运航司
-  departureTableId: 69, // 中转进港-表格
-
-  /***-----中转离港------***/
-  departureAirLtId: 72, // 中转离港-机场选择
-  departureAviJoinLtId: 71, // 中转离港-进港承运航司
-  departureAviLeaveLtId: 74, // 中转离港-离港承运航司
-  departureTableLtId: 68, // 中转离港-表格
-
-  /***-----航班视图------***/
-  flightAirline: 1141, // 航班-航段
-  flightInfo: 1142, // 航班-基础信息
-  flightContainer: 41, // 航班-容器
-  flightBaggage: 1144, // 航班-行李列表
-  abnormalBaggageInfo: 1145,
-
-  /***-----行李视图------***/
-  baggageBasicInfo: 255, // 行李-基础信息
-  baggageAirline: 18009, // 行李-航段
-  baggageTrack: 18010, // 行李-追踪节点
-  baggageDetails: 44, // 行李-详情列表
-  baggageMessage: 3066, // 行李-原始报文
-
-  /***-----容器视图------***/
-  containerHistory: 18026,
-  containerBaggage: 18027,
-
-  /***-----统计分析------***/
-  stOrderId: 18012,
-  stOrderChartId: 18013,
-  stCalId: 18014,
-  stFigntsId: 18015,
-  stSpeedId: 18016,
-  stBaggageId: 18017,
-  stMapId: 18018,
-  stCountryId: 18019,
-  stTerminalId: 18020,
-  stBrsId: 1803429,
-
-  // 数据统计
-  airlineOptions: 1806, // 航线下拉
-  twoCharacterOptions: 1803426, // 二字码下拉
-  termSeleid: 1156, //航站选择下拉
-  areaOptions: 1807, // 大区/基地分公司下拉
-  AirportId: 1808, // 航站下拉
-  TerminalId: 1809, // 航站楼下拉
-  byOther: 1810, // 大区/分公司以外航班统计(全部)
-  byArea: 1811, // 根据大区/分公司航班统计(全部)
-  withBaggageByOther: 1812, // 大区/分公司以外航班统计(有行李)
-  withBaggageByArea: 1814, // 根据大区/分公司航班统计(有行李)
-  baggageByOther: 1815, // 行李统计(全部)
-  baggageByArea: 1816, // 行李统计-分公司(全部)
-  notDelByOther: 1817, // 行李统计(不包含DEL)
-  notDelByArea: 1818, // 行李统计-分公司(不包含DEL)
-  baggagePassengerByOther: 1819, // 行李旅客统计
-  baggagePassengerByArea: 1820, // 行李旅客统计-分公司
-  specialBaggageByOther: 1821, // 特殊行李统计
-  specialBaggageByArea: 1822, // 特殊行李统计-分公司
-  abnormalBaggageByOther: 1823, // 异常行李统计
-  abnormalBaggageByArea: 1824, // 异常行李统计-分公司
-  complaintBaggageByOther: 1825, // 投诉行李统计
-  complaintBaggageByArea: 1826, // 投诉行李统计-分公司
-  compensationBaggageByOther: 1827, // 赔偿行李统计
-  compensationBaggageByArea: 1828, // 赔偿行李统计-分公司
-  compensationByOther: 1829, // 赔偿金额统计
-  compensationByArea: 1830, // 赔偿金额统计-分公司
-  baggageAverageByOther: 1831, // 平均行李统计
-  baggageAverageByArea: 1832, // 平均行李统计-分公司
-  specialBaggageClassificationByOther: 1193, // 特殊行李分类统计
-  specialBaggageClassificationByArea: 1194, // 特殊行李分类统计-分公司
-  flightClassificationByOther: 1195, // 航班分类统计
-  flightClassificationByArea: 1196, // 航班分类统计-分公司
-  compensationClassificationByOther: 1197, // 赔偿分类统计
-  compensationClassificationByArea: 1198, // 赔偿分类统计-分公司
-  passengerNormalClassificationByOther: 1199, // 旅客分类常客统计
-  passengerNormalClassificationByArea: 1200, // 旅客分类常客统计-分公司
-  passengerImportantClassificationByOther: 1201, // 旅客分类要客统计
-  passengerImportantClassificationByArea: 1202, // 旅客分类要客统计-分公司
-  abnormalBaggageClassificationByOther: 1205, // 异常行李分类统计
-  abnormalBaggageClassificationByArea: 1206, // 异常行李分类统计-分公司
-  compensationClassificationAll: 1834, // 赔偿金额分类统计-全部
-  compensationClassificationByAirline: 1835, // 赔偿金额分类统计-航线
-  compensationBaggageClassificationAll: 1836, // 赔偿行李分类统计-全部
-  compensationBaggageClassificationByAirline: 1837, // 赔偿行李分类统计-航线
-  abnormalBaggageClassificationAll: 1838, // 异常行李分类统计-全部
-  abnormalBaggageClassificationByAirline: 1839, // 异常行李分类统计-航线
-  nodeRange: 1801, // 节点查询范围
-  nodeAirline: 1802, // 节点航线下拉
-  nodeAirport: 1803, // 节点航站下拉
-  nodeAll: 1804, // 节点统计雷达图-全部
-  nodeIn: 1804, // 节点统计雷达图-进港
-  nodeOut: 1804, // 节点统计雷达图-离港
-  nodeExportAirline: 1805, // 节点统计导出-航线
-  nodeExportAirport: 1805, // 节点统计导出-航站
-  nodeAxisDesc: 90, // 节点统计指示器名称解释
-
-  /***-----速运行李------***/
-  expressTransportationUpload: 20034, // 速运行李数据上传
-  expressTransportation: 1803432, // 速运行李数据查询
-}

BIN
mainFactory/src/main/resources/static/favicon.ico


+ 0 - 1
mainFactory/src/main/resources/static/index.html

@@ -1 +0,0 @@
-<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><meta http-equiv=Content-Security-Policy content="script-src 'self' 'unsafe-eval';style-src 'self' 'unsafe-inline'"><meta http-equiv=X-XSS-Protection content="1;mode=block"><meta http-equiv=X-Content-Type-Options content=nosniff><link rel=icon href=favicon.ico><title>Vue3 Admin Ts</title><script src=staticConfig.js></script><script id=configJS src=config.js></script><link href=static/css/app.494c078c.css rel=preload as=style><link href=static/css/chunk-elementUI.0ae24586.css rel=preload as=style><link href=static/css/chunk-libs.bef63a38.css rel=preload as=style><link href=static/js/app.a362bc3f.js rel=preload as=script><link href=static/js/chunk-elementUI.e94dd283.js rel=preload as=script><link href=static/js/chunk-libs.28228a50.js rel=preload as=script><link href=static/css/chunk-elementUI.0ae24586.css rel=stylesheet><link href=static/css/chunk-libs.bef63a38.css rel=stylesheet><link href=static/css/app.494c078c.css rel=stylesheet></head><body><div id=app></div><script src=static/js/runtime.f9f8cc74.js></script><script src=static/js/chunk-elementUI.e94dd283.js></script><script src=static/js/chunk-libs.28228a50.js></script><script src=static/js/app.a362bc3f.js></script></body></html>

File diff suppressed because it is too large
+ 0 - 0
mainFactory/src/main/resources/static/static/css/chunk-62b675ea.17a7dbcc.css


File diff suppressed because it is too large
+ 0 - 0
mainFactory/src/main/resources/static/static/css/chunk-elementUI.0ae24586.css


File diff suppressed because it is too large
+ 0 - 0
mainFactory/src/main/resources/static/static/css/chunk-libs.bef63a38.css


BIN
mainFactory/src/main/resources/static/static/fonts/element-icons.535877f5.woff


BIN
mainFactory/src/main/resources/static/static/fonts/element-icons.732389de.ttf


BIN
mainFactory/src/main/resources/static/static/img/bg.7776f3f6.jpg


BIN
mainFactory/src/main/resources/static/static/img/nodata.22b989c0.png


BIN
mainFactory/src/main/resources/static/static/img/nopage.0e91ade0.png


File diff suppressed because it is too large
+ 0 - 0
mainFactory/src/main/resources/static/static/js/chunk-elementUI.e94dd283.js


+ 0 - 66
mainFactory/src/main/resources/static/staticConfig.js

@@ -1,66 +0,0 @@
-/* url配置 */
-window.PLATFROM_CONFIG = {
-  baseNewUrl: '', //登录前的http请求地址
-  baseURLCA: '', // 登录后的http请求地址
-  appKeyString: '9inu7zpllz1folzsljm498dcpi0lsog1', //appSecret
-  appId: 'q7kdjmmaf0kerwpf', //appid
-  baggageMessageURL: '/openApi/query',
-  getBase64: 'http://10.211.67.163:8083/getBase64',
-}
-
-const baseNewUrl = window.location.hostname
-switch (baseNewUrl) {
-  case '10.211.66.23':
-    PLATFROM_CONFIG = {
-      ...PLATFROM_CONFIG,
-      baseNewUrl: 'http://10.211.66.23:8082',
-      baseURLCA: 'http://10.211.66.23:8082',
-      fileUrl: 'http://10.211.66.23:8082',
-      expressUrl: 'http://10.211.67.177:8043',
-      tempUrl: 'http://10.211.67.163:16300', // 1.0临时地址
-      tempToken: 'bb1bcfcb336b40e9b8602e808b053c3b', // 1.0临时token
-      tempUserId: '1656481036109',
-      tempAppToken: '2ecbda35d72c4ae89294464629f29f35',
-      hasStaticRoutes: true,
-    }
-    break
-  case '10.199.7.20':
-    PLATFROM_CONFIG = {
-      ...PLATFROM_CONFIG,
-      baseNewUrl: 'http://10.199.7.20:8083',
-      baseURLCA: 'http://10.199.7.20:8083',
-    }
-    break
-  case 'localhost':
-    PLATFROM_CONFIG = {
-      ...PLATFROM_CONFIG,
-      baseNewUrl: 'http://localhost:18400',
-      baseURLCA: 'http://localhost:18400',
-      fileUrl: 'http://localhost:18400',
-      expressUrl: 'http://localhost:8043',
-      tempUrl: 'http://localhost:16300', // 1.0临时地址
-      tempToken: 'bb1bcfcb336b40e9b8602e808b053c3b', // 1.0临时token
-      tempUserId: '1656481036109',
-      tempAppToken: '2ecbda35d72c4ae89294464629f29f35',
-      hasStaticRoutes: true,
-    }
-    break
-  default:
-    PLATFROM_CONFIG = {
-      ...PLATFROM_CONFIG,
-      baseNewUrl: 'http://10.211.66.23:8082',
-      baseURLCA: 'http://10.211.66.23:8082',
-    }
-    break
-}
-
-/* 轮询间隔 */
-window.LOOP_INTERVAL = {
-  arrivalTable: 30 * 1000, // 进港视图表格
-  departureTable: 30 * 1000, // 离港视图表格
-  transferArrivalTable: 30 * 1000, // 中转进港表格
-  transferDepartureTable: 30 * 1000, // 中转离港表格
-  baggageTrack: 30 * 1000, // 行李跟踪节点信息
-  baggageDetails: 30 * 1000, // 行李详情表格
-  baggageMessage: 30 * 1000, // 行李原始报文
-}

Some files were not shown because too many files changed in this diff