소스 검색

fix: 去除语法特性

zhangying 4 일 전
부모
커밋
0a899c785b
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/main/resources/static/app/main/bigdata/kbxy/dwdt.js
  2. 1 1
      src/main/resources/static/app/main/bigdata/kbxy/home.js

+ 1 - 1
src/main/resources/static/app/main/bigdata/kbxy/dwdt.js

@@ -1,7 +1,7 @@
 (function ($app) {
     'use strict';
     $app.module('gtPartyApp').controller('showKBDjdsj_dwdtCtrl', function ($scope, $state, $alert, AuthUser, flowaudit, $http, $ocLazyLoad, $loading, $timeout) {
-        if (!AuthUser?.getUser()?.Id || AuthUser.getUser().Id == "null") {
+        if (!AuthUser || !AuthUser.getUser().Id || AuthUser.getUser().Id == null || AuthUser.getUser().Id == "null") {
             window.location.href = "/app/main/index.html#!/loginkb";
             return false;
         }

+ 1 - 1
src/main/resources/static/app/main/bigdata/kbxy/home.js

@@ -1,7 +1,7 @@
 (function ($app) {
     'use strict';
     $app.module('gtPartyApp').controller('showKBDjdsjCtrl', function ($scope, $state, $alert, AuthUser, flowaudit, $http, $ocLazyLoad, $loading, $filter) {
-        if (!AuthUser?.getUser()?.Id || AuthUser.getUser().Id == "null") {
+        if (!AuthUser || !AuthUser.getUser().Id || AuthUser.getUser().Id == null || AuthUser.getUser().Id == "null") {
             window.location.href = "/app/main/index.html#!/loginkb";
             return false;
         }