Ver código fonte

调整分页问题

hankunkun 10 meses atrás
pai
commit
ccde3ae317
33 arquivos alterados com 26 adições e 33 exclusões
  1. 2 18
      src/main/java/ieven/server/webapp/api/AlipayController.java
  2. 8 10
      src/main/java/ieven/server/webapp/domain/data/DataService.java
  3. 8 1
      src/main/resources/static/index.html
  4. 0 0
      src/main/resources/static/static/css/app.1f25baa9f2b560f3622142c34afb7309.css
  5. 0 0
      src/main/resources/static/static/invoice/account.svg
  6. 1 0
      src/main/resources/static/static/invoice/arrow-left.svg
  7. 1 0
      src/main/resources/static/static/invoice/arrow-right.svg
  8. BIN
      src/main/resources/static/static/invoice/black-man.png
  9. 0 0
      src/main/resources/static/static/invoice/company.svg
  10. 0 0
      src/main/resources/static/static/invoice/company22.svg
  11. BIN
      src/main/resources/static/static/invoice/group.png
  12. 1 0
      src/main/resources/static/static/invoice/group2.svg
  13. BIN
      src/main/resources/static/static/invoice/group22.png
  14. 0 0
      src/main/resources/static/static/invoice/professor-man-deal.svg
  15. 0 0
      src/main/resources/static/static/invoice/professor-man.svg
  16. 0 0
      src/main/resources/static/static/invoice/professor-woman.svg
  17. 1 0
      src/main/resources/static/static/invoice/professor.svg
  18. BIN
      src/main/resources/static/static/invoice/red-man.png
  19. 0 0
      src/main/resources/static/static/js/1.6df3a9406280b8384aa8.js
  20. 0 0
      src/main/resources/static/static/js/1.fd216fd0f157a631c515.js
  21. 0 0
      src/main/resources/static/static/js/2.43384261e5d6b8c85bb7.js
  22. 0 0
      src/main/resources/static/static/js/2.ad7a761451943786529d.js
  23. 0 0
      src/main/resources/static/static/js/3.8124a69fbfe430b4050f.js
  24. 0 0
      src/main/resources/static/static/js/4.4cb2bf4ec86307f8aa7d.js
  25. 0 0
      src/main/resources/static/static/js/5.3defbbaae0fa3bddba52.js
  26. 0 0
      src/main/resources/static/static/js/6.eedbbe55278fd36cf8c6.js
  27. 1 1
      src/main/resources/static/static/js/7.83ecdc9548c3706f90ec.js
  28. 1 1
      src/main/resources/static/static/js/8.1cfc86658a36840181e1.js
  29. 0 0
      src/main/resources/static/static/js/app.6b79adfa44a0e0d044b9.js
  30. 0 0
      src/main/resources/static/static/js/app.afd967708c4346a9dad8.js
  31. 0 1
      src/main/resources/static/static/js/manifest.b2286840eeb80b23fe91.js
  32. 1 0
      src/main/resources/static/static/js/manifest.e7065ba1f42a8ca19b31.js
  33. 1 1
      src/main/resources/static/static/js/vendor-async.f97ed98272f8cf46d635.js

+ 2 - 18
src/main/java/ieven/server/webapp/api/AlipayController.java

@@ -71,19 +71,11 @@ public class AlipayController {
             if (criteria == null) {
                 return Mapped.ERROR("未查询到明细");
             } else {
-                Future<Long> totalFuture = this.dataService.countTotalByQuery(new Query(criteria));
+                Long total = this.dataService.countTotalByQuery(new Query(criteria));
 
                 List<DataMap> dataMaps =
                         this.mongoTemplate.find(
                                 (new Query(criteria)).skip(skip).limit(pageSize), DataMap.class);
-                Long total;
-
-                try {
-                    total = totalFuture.get();
-                } catch (ExecutionException | InterruptedException var15) {
-                    var15.printStackTrace();
-                    return Mapped.ERROR("系统查询出错");
-                }
                 Mapped mapped = Mapped.OK();
                 mapped.put("result", dataMaps);
                 mapped.put("code", 200);
@@ -118,19 +110,11 @@ public class AlipayController {
             if (criteria == null) {
                 return Mapped.ERROR("未查询到明细");
             } else {
-                Future<Long> totalFuture = this.dataService.countTotalByQuery(new Query(criteria));
+                Long total = this.dataService.countTotalByQuery(new Query(criteria));
 
                 List<DataMap> dataMaps =
                         this.mongoTemplate.find(
                                 (new Query(criteria)).skip(skip).limit(pageSize), DataMap.class);
-                Long total;
-
-                try {
-                    total = totalFuture.get();
-                } catch (ExecutionException | InterruptedException var15) {
-                    var15.printStackTrace();
-                    return Mapped.ERROR("系统查询出错");
-                }
                 Mapped mapped = Mapped.OK();
                 mapped.put("result", dataMaps);
                 mapped.put("code", 200);

+ 8 - 10
src/main/java/ieven/server/webapp/domain/data/DataService.java

@@ -6,7 +6,6 @@ import ieven.server.webapp.domain.exporter.Exporter;
 import ieven.server.webapp.domain.file.LogicalFile;
 import ieven.server.webapp.infrastructure.wrapper.Mapped;
 import ieven.server.webapp.util.Properties;
-import ieven.server.webapp.util.SplitCharacterEnum;
 import ieven.server.webapp.util.excel.PublicStatic;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.collections4.CollectionUtils;
@@ -23,7 +22,10 @@ import org.springframework.scheduling.annotation.AsyncResult;
 import org.springframework.stereotype.Service;
 
 import java.io.IOException;
-import java.util.*;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.LinkedHashMap;
+import java.util.List;
 import java.util.concurrent.ExecutionException;
 import java.util.concurrent.Future;
 import java.util.regex.Pattern;
@@ -129,10 +131,10 @@ public class DataService {
             criteria.andOperator(cri);
         }
         Query dataQuery = new Query(criteria);
-        if(param.getDeleteName()==2){
+        if (param.getDeleteName() == 2) {
             dataQuery.addCriteria(new Criteria().andOperator(PublicStatic.getQuery()));
         }
-        Future<Long> totalFuture = dataService.countTotalByQuery(dataQuery);
+        Long total = dataService.countTotalByQuery(dataQuery);
         Future<LinkedHashMap<String, String>> headerFuture = dataService.viewHeaders(fileId);
         if (CollectionUtils.isNotEmpty(param.getOrders())) {
             for (QueryParam.Param2 param2 : param.getOrders()) {
@@ -151,10 +153,8 @@ public class DataService {
         for (DataMap dataMap : resultList) {
             dataMap.formId();
         }
-        Long total = null;
         LinkedHashMap<String, String> headers = null;
         try {
-            total = totalFuture.get();
             headers = headerFuture.get();
         } catch (InterruptedException | ExecutionException e) {
             e.printStackTrace();
@@ -292,10 +292,8 @@ public class DataService {
         return new AsyncResult<>(total);
     }
 
-    @Async
-    public Future<Long> countTotalByQuery(Query query) {
-        Long total = mongoTemplate.count(query, DataMap.class);
-        return new AsyncResult<>(total);
+    public Long countTotalByQuery(Query query) {
+        return mongoTemplate.count(query, DataMap.class);
     }
 
     @Async

+ 8 - 1
src/main/resources/static/index.html

@@ -1 +1,8 @@
-<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"><meta http-equiv=X-UA-Compatible content="IE=edge"><title>追迹者-三方支付数据分析</title><link href=/static/css/app.cebd9798414b29c56244a88705a4294b.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/static/js/manifest.b2286840eeb80b23fe91.js></script><script type=text/javascript src=/static/js/vendor.4a30d08b867d4749cfcc.js></script><script type=text/javascript src=/static/js/app.afd967708c4346a9dad8.js></script></body></html>
+<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"><meta http-equiv=X-UA-Compatible content="IE=edge"><title>追迹者-三方支付数据分析</title><link href=/static/css/app.1f25baa9f2b560f3622142c34afb7309.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/static/js/manifest.e7065ba1f42a8ca19b31.js></script><script type=text/javascript src=/static/js/vendor.4a30d08b867d4749cfcc.js></script><script type=text/javascript src=/static/js/app.6b79adfa44a0e0d044b9.js></script></body></html>
+<!-- 
+ PROJECT_NAME: 三方支付数据分析;
+ BUILD_TIME:Mon, 23 Sep 2024 22:49:45 GMT; 
+ GIT_BRANCH:master; 
+ GIT_COMMIT:45028b29690f8e6b1ffe2ac85b5cb8555d1b7aa0; 
+ TICK:3.2.0; 
+ -->

Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/css/app.1f25baa9f2b560f3622142c34afb7309.css


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/invoice/account.svg


+ 1 - 0
src/main/resources/static/static/invoice/arrow-left.svg

@@ -0,0 +1 @@
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1706012209054" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="39743" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M44.204 386.287h942.568c12.217 0 22.12 9.902 22.12 22.12 0 12.223-9.902 22.12-22.12 22.12h-889.192l192.116 192.076c0 0 6.672 15.861-8.084 26.784-13.303 9.848-28.31-0.635-28.31-0.635l-224.74-224.698c-6.311-6.342-8.206-15.84-4.782-24.112 3.417-8.239 11.489-13.654 20.424-13.654v0zM44.204 386.287z" p-id="39744" fill="#e6e6e6"></path></svg>

+ 1 - 0
src/main/resources/static/static/invoice/arrow-right.svg

@@ -0,0 +1 @@
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1706012472925" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="54594" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M979.796 637.713l-942.568 0c-12.21700001 0-22.12-9.902-22.12-22.12 0-12.22300001 9.902-22.12 22.12-22.12l889.192-1e-8-192.116-192.07599998c0 0-6.672-15.861 8.084-26.78400001 13.303-9.848 28.31 0.635 28.31 0.635l224.74 224.698c6.311 6.342 8.206 15.84 4.782 24.11200001-3.417 8.239-11.489 13.654-20.424 13.65399999v0zM979.796 637.713z" p-id="54595" fill="#e6e6e6"></path></svg>

BIN
src/main/resources/static/static/invoice/black-man.png


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/invoice/company.svg


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/invoice/company22.svg


BIN
src/main/resources/static/static/invoice/group.png


+ 1 - 0
src/main/resources/static/static/invoice/group2.svg

@@ -0,0 +1 @@
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1724255814878" class="icon" viewBox="0 0 1066 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5292" width="33.3125" height="32" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M754.785652 1024v-43.663875a109.149023 109.149023 0 0 1 109.127692-109.170354h87.30642a109.149023 109.149023 0 0 1 109.127693 109.170354v43.663875H754.785652z m152.791568-185.576803a98.249052 98.249052 0 1 1 0-196.498104 98.249052 98.249052 0 0 1 0 196.498104z m-202.342708-43.663875a37.755281 37.755281 0 0 1-19.069616-5.140691l-152.919552-88.308961-152.940882 88.308961a38.181894 38.181894 0 0 1-38.181894-66.167729l152.919552-88.308961v-176.639254a38.181894 38.181894 0 1 1 76.385118 0v176.639254l152.940883 88.308961a38.245886 38.245886 0 0 1-19.133609 71.30842zM372.817398 338.432363a109.149023 109.149023 0 0 1 109.127692-109.191685h87.30642a109.149023 109.149023 0 0 1 109.127693 109.191685v43.642544H372.817398v-43.642544z m152.791568-141.934259a98.249052 98.249052 0 1 1 0-196.498104 98.249052 98.249052 0 0 1 0 196.498104zM6.121901 980.336125a109.170354 109.170354 0 0 1 109.127693-109.170354h87.30642a109.149023 109.149023 0 0 1 109.127692 109.170354v43.663875H6.121901v-43.663875z m152.791568-141.912928a98.227722 98.227722 0 0 1-98.227721-98.249052 98.249052 98.249052 0 1 1 98.227721 98.249052z" fill="#1afa29" p-id="5293"></path></svg>

BIN
src/main/resources/static/static/invoice/group22.png


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/invoice/professor-man-deal.svg


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/invoice/professor-man.svg


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/invoice/professor-woman.svg


+ 1 - 0
src/main/resources/static/static/invoice/professor.svg

@@ -0,0 +1 @@
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1704888743858" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="27187" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M760.384 246.592zM565.312 245.632z" fill="#FFFFFF" p-id="27188"></path><path d="M512 14.4C287.2 14.4 97.6 163.2 35.2 368c-13.6 45.6-21.6 94.4-21.6 144 0 275.2 223.2 497.6 497.6 497.6 192 0 357.6-108 440.8-267.2 36-68.8 56.8-147.2 56.8-230.4 0.8-275.2-221.6-497.6-496.8-497.6zM944 656c-60 180.8-230.4 311.2-432 311.2-251.2 0-455.2-204-455.2-455.2 0-72.8 16.8-141.6 47.2-202.4C178.4 160 333.6 56.8 512 56.8c251.2 0 455.2 204 455.2 455.2 0 50.4-8.8 98.4-23.2 144z" fill="#06f425" p-id="27189" data-spm-anchor-id="a313x.search_index.0.i49.52633a81F1X3uN" class=""></path><path d="M511.168 785.856c-34.176 0-68.352 0.384-102.656 0-21.632-0.384-43.392-1.28-65.024-2.752a173.184 173.184 0 0 1-57.28-12.224 48 48 0 0 1-24.768-20.736 40.832 40.832 0 0 1-4.608-19.392c-1.344-36.736 5.568-71.744 23.616-104a194.688 194.688 0 0 1 102.656-88.832c23.104-8.96 47.232-12.864 71.936-12.864 38.016-0.064 76.032-0.192 113.92 0 50.368 0.256 94.976 16.384 132.8 49.792 33.728 29.76 54.656 67.136 62.592 111.68 2.88 15.872 3.392 31.872 2.496 48-0.832 14.272-8.768 24.256-20.672 31.488-12.16 7.36-25.664 10.88-39.488 13.376-32.96 6.016-66.304 6.272-99.584 6.528-31.936 0.192-63.936-0.064-95.936-0.064 0 0.128 0 0 0 0zM662.08 358.4c0 64.512-43.008 123.328-107.904 144.064a155.904 155.904 0 0 1-196.608-100.032 152 152 0 0 1 51.2-165.632c23.808-18.56 50.752-29.824 80.768-32.96a155.84 155.84 0 0 1 167.616 114.688c3.264 12.416 4.8 25.152 4.928 39.872z" fill="#36ab60" p-id="27190" data-spm-anchor-id="a313x.search_index.0.i52.52633a81F1X3uN" class=""></path></svg>

BIN
src/main/resources/static/static/invoice/red-man.png


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/1.6df3a9406280b8384aa8.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/1.fd216fd0f157a631c515.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/2.43384261e5d6b8c85bb7.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/2.ad7a761451943786529d.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/3.8124a69fbfe430b4050f.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/4.4cb2bf4ec86307f8aa7d.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/5.3defbbaae0fa3bddba52.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/6.eedbbe55278fd36cf8c6.js


+ 1 - 1
src/main/resources/static/static/js/7.33e0cd2b00cdded0a5a7.js → src/main/resources/static/static/js/7.83ecdc9548c3706f90ec.js

@@ -1 +1 @@
-webpackJsonp([7],{"3DAu":function(n,t,e){var r=e("JrHz");"string"==typeof r&&(r=[[n.i,r,""]]),r.locals&&(n.exports=r.locals);e("rjj0")("6d8665e8",r,!0,{})},JrHz:function(n,t,e){t=n.exports=e("FZ+f")(!1),t.push([n.i,"\n.cm-container {\n    width: 100%;\n    height: calc(100vh - 100px);\n    padding: 5px 0;\n    overflow-y: auto;\n}\n",""])},oYzN:function(n,t,e){"use strict";function r(n){e("3DAu")}Object.defineProperty(t,"__esModule",{value:!0});var o={data:function(){return{type:"analyse"}},mounted:function(){}},i=function(){var n=this,t=n.$createElement,e=n._self._c||t;return e("div",{staticClass:"cm-container"},[e("transition",{attrs:{mode:"out-in"}},[e("router-view")],1)],1)},a=[],c={render:i,staticRenderFns:a},u=c,s=e("VU/8"),l=r,d=s(o,u,!1,l,null,null);t.default=d.exports}});
+webpackJsonp([7],{"3DAu":function(n,t,e){var r=e("JrHz");"string"==typeof r&&(r=[[n.i,r,""]]),r.locals&&(n.exports=r.locals);e("rjj0")("4e69fa9a",r,!0,{})},JrHz:function(n,t,e){t=n.exports=e("FZ+f")(!1),t.push([n.i,"\n.cm-container {\n    width: 100%;\n    height: calc(100vh - 100px);\n    padding: 5px 0;\n    overflow-y: auto;\n}\n",""])},oYzN:function(n,t,e){"use strict";function r(n){e("3DAu")}Object.defineProperty(t,"__esModule",{value:!0});var o={data:function(){return{type:"analyse"}},mounted:function(){}},a=function(){var n=this,t=n.$createElement,e=n._self._c||t;return e("div",{staticClass:"cm-container"},[e("transition",{attrs:{mode:"out-in"}},[e("router-view")],1)],1)},i=[],c={render:a,staticRenderFns:i},u=c,s=e("VU/8"),l=r,f=s(o,u,!1,l,null,null);t.default=f.exports}});

+ 1 - 1
src/main/resources/static/static/js/8.4dd322f4e22f0f584df6.js → src/main/resources/static/static/js/8.1cfc86658a36840181e1.js

@@ -1 +1 @@
-webpackJsonp([8],{"0AeZ":function(n,t,e){t=n.exports=e("FZ+f")(!1),t.push([n.i,"\n.container-404[data-v-4b136946] {\n    text-align: center;\n    width: 100%;\n    padding: 50px 30px;\n}\n.wrap404[data-v-4b136946] {\n    height: 480px;\n    width: 800px;\n    border: 15px solid #e6e6e6;\n    margin: 0 auto;\n    padding: 30px 20px;\n    border-radius: 10px;\n    color: #000;\n    font-weight: 600;\n    font-size: 20px;\n    -webkit-box-shadow: inset 2px 2px 1px 1px #d5d5d5,\n        inset -2px -2px 1px 1px #d5d5d5, 2px 2px 1px 1px #d5d5d5,\n        -2px -2px 1px 1px #d5d5d5;\n    background-color: #032d58;\n}\n.wrap404 .title[data-v-4b136946] {\n    text-shadow: 5px 1px 6px rgb(241, 232, 222);\n    margin-top: 40px;\n    color: lightblue;\n}\n.wrap404 .link[data-v-4b136946] {\n    text-shadow: 5px 1px 6px green;\n    text-decoration: underline;\n    margin-top: 20px;\n}\n.wrap404 .title404[data-v-4b136946] {\n    text-shadow: 5px 1px 6px #f93;\n    font-weight: 800;\n    font-size: 120px;\n    color: #d42f09;\n    margin-top: 30px;\n}\n\n",""])},FNfY:function(n,t,e){"use strict";function a(n){e("X7YA")}Object.defineProperty(t,"__esModule",{value:!0});var p={mounted:function(){console.log("数据分析系统")}},i=function(){var n=this,t=n.$createElement,e=n._self._c||t;return e("div",{staticClass:"container-404"},[e("div",{staticClass:"wrap404"},[e("h1",{staticClass:"title"},[n._v("页面不存在")]),n._v(" "),e("router-link",{attrs:{to:"/"}},[e("span",{staticClass:"link"},[n._v("首 页")])]),n._v(" "),e("h1",{staticClass:"title404"},[n._v("404")])],1)])},o=[],x={render:i,staticRenderFns:o},r=x,d=e("VU/8"),s=a,l=d(p,r,!1,s,"data-v-4b136946",null);t.default=l.exports},X7YA:function(n,t,e){var a=e("0AeZ");"string"==typeof a&&(a=[[n.i,a,""]]),a.locals&&(n.exports=a.locals);e("rjj0")("5b107abe",a,!0,{})}});
+webpackJsonp([8],{"0AeZ":function(n,t,e){t=n.exports=e("FZ+f")(!1),t.push([n.i,"\n.container-404[data-v-4b136946] {\n    text-align: center;\n    width: 100%;\n    padding: 50px 30px;\n}\n.wrap404[data-v-4b136946] {\n    height: 480px;\n    width: 800px;\n    border: 15px solid #e6e6e6;\n    margin: 0 auto;\n    padding: 30px 20px;\n    border-radius: 10px;\n    color: #000;\n    font-weight: 600;\n    font-size: 20px;\n    -webkit-box-shadow: inset 2px 2px 1px 1px #d5d5d5,\n        inset -2px -2px 1px 1px #d5d5d5, 2px 2px 1px 1px #d5d5d5,\n        -2px -2px 1px 1px #d5d5d5;\n    background-color: #032d58;\n}\n.wrap404 .title[data-v-4b136946] {\n    text-shadow: 5px 1px 6px rgb(241, 232, 222);\n    margin-top: 40px;\n    color: lightblue;\n}\n.wrap404 .link[data-v-4b136946] {\n    text-shadow: 5px 1px 6px green;\n    text-decoration: underline;\n    margin-top: 20px;\n}\n.wrap404 .title404[data-v-4b136946] {\n    text-shadow: 5px 1px 6px #f93;\n    font-weight: 800;\n    font-size: 120px;\n    color: #d42f09;\n    margin-top: 30px;\n}\n\n",""])},FNfY:function(n,t,e){"use strict";function a(n){e("X7YA")}Object.defineProperty(t,"__esModule",{value:!0});var p={mounted:function(){console.log("数据分析系统")}},i=function(){var n=this,t=n.$createElement,e=n._self._c||t;return e("div",{staticClass:"container-404"},[e("div",{staticClass:"wrap404"},[e("h1",{staticClass:"title"},[n._v("页面不存在")]),n._v(" "),e("router-link",{attrs:{to:"/"}},[e("span",{staticClass:"link"},[n._v("首 页")])]),n._v(" "),e("h1",{staticClass:"title404"},[n._v("404")])],1)])},o=[],x={render:i,staticRenderFns:o},r=x,d=e("VU/8"),s=a,l=d(p,r,!1,s,"data-v-4b136946",null);t.default=l.exports},X7YA:function(n,t,e){var a=e("0AeZ");"string"==typeof a&&(a=[[n.i,a,""]]),a.locals&&(n.exports=a.locals);e("rjj0")("f0c2384a",a,!0,{})}});

Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/app.6b79adfa44a0e0d044b9.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
src/main/resources/static/static/js/app.afd967708c4346a9dad8.js


+ 0 - 1
src/main/resources/static/static/js/manifest.b2286840eeb80b23fe91.js

@@ -1 +0,0 @@
-!function(e){function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r=window.webpackJsonp;window.webpackJsonp=function(t,a,c){for(var i,u,d,f=0,s=[];f<t.length;f++)u=t[f],o[u]&&s.push(o[u][0]),o[u]=0;for(i in a)Object.prototype.hasOwnProperty.call(a,i)&&(e[i]=a[i]);for(r&&r(t,a,c);s.length;)s.shift()();if(c)for(f=0;f<c.length;f++)d=n(n.s=c[f]);return d};var t={},o={11:0};n.e=function(e){function r(){i.onerror=i.onload=null,clearTimeout(u);var n=o[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),o[e]=void 0)}var t=o[e];if(0===t)return new Promise(function(e){e()});if(t)return t[2];var a=new Promise(function(n,r){t=o[e]=[n,r]});t[2]=a;var c=document.getElementsByTagName("head")[0],i=document.createElement("script");i.type="text/javascript",i.charset="utf-8",i.async=!0,i.timeout=12e4,n.nc&&i.setAttribute("nonce",n.nc),i.src=n.p+"static/js/"+({0:"vendor-async"}[e]||e)+"."+{0:"72eb6ae5680eb2d7387d",1:"6df3a9406280b8384aa8",2:"ad7a761451943786529d",3:"2b271404d8cdc5a728d5",4:"01906a9753e03c925c75",5:"20c1acbcca06578459c6",6:"8affe04057bd90e7eb81",7:"33e0cd2b00cdded0a5a7",8:"4dd322f4e22f0f584df6"}[e]+".js";var u=setTimeout(r,12e4);return i.onerror=i.onload=r,c.appendChild(i),a},n.m=e,n.c=t,n.d=function(e,r,t){n.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:t})},n.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(r,"a",r),r},n.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="/",n.oe=function(e){throw console.error(e),e}}([]);

+ 1 - 0
src/main/resources/static/static/js/manifest.e7065ba1f42a8ca19b31.js

@@ -0,0 +1 @@
+!function(e){function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r=window.webpackJsonp;window.webpackJsonp=function(t,c,a){for(var f,i,u,d=0,s=[];d<t.length;d++)i=t[d],o[i]&&s.push(o[i][0]),o[i]=0;for(f in c)Object.prototype.hasOwnProperty.call(c,f)&&(e[f]=c[f]);for(r&&r(t,c,a);s.length;)s.shift()();if(a)for(d=0;d<a.length;d++)u=n(n.s=a[d]);return u};var t={},o={11:0};n.e=function(e){function r(){f.onerror=f.onload=null,clearTimeout(i);var n=o[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),o[e]=void 0)}var t=o[e];if(0===t)return new Promise(function(e){e()});if(t)return t[2];var c=new Promise(function(n,r){t=o[e]=[n,r]});t[2]=c;var a=document.getElementsByTagName("head")[0],f=document.createElement("script");f.type="text/javascript",f.charset="utf-8",f.async=!0,f.timeout=12e4,n.nc&&f.setAttribute("nonce",n.nc),f.src=n.p+"static/js/"+({0:"vendor-async"}[e]||e)+"."+{0:"f97ed98272f8cf46d635",1:"fd216fd0f157a631c515",2:"43384261e5d6b8c85bb7",3:"8124a69fbfe430b4050f",4:"4cb2bf4ec86307f8aa7d",5:"3defbbaae0fa3bddba52",6:"eedbbe55278fd36cf8c6",7:"83ecdc9548c3706f90ec",8:"1cfc86658a36840181e1"}[e]+".js";var i=setTimeout(r,12e4);return f.onerror=f.onload=r,a.appendChild(f),c},n.m=e,n.c=t,n.d=function(e,r,t){n.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:t})},n.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(r,"a",r),r},n.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="/",n.oe=function(e){throw console.error(e),e}}([]);

+ 1 - 1
src/main/resources/static/static/js/vendor-async.72eb6ae5680eb2d7387d.js → src/main/resources/static/static/js/vendor-async.f97ed98272f8cf46d635.js

@@ -1 +1 @@
-webpackJsonp([0],{"Nym/":function(n,e,t){e=n.exports=t("FZ+f")(!1),e.push([n.i,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/* 分页 */\n.alignItem[data-v-051746fc] {\n    padding: 5px;\n    text-align: center;\n}\n.casepage[data-v-051746fc] {\n    background-color: #032d58;\n}\n",""])},UvCS:function(n,e,t){var a=t("Nym/");"string"==typeof a&&(a=[[n.i,a,""]]),a.locals&&(n.exports=a.locals);t("rjj0")("ddc5ebce",a,!0,{})},cMGX:function(n,e,t){"use strict";function a(n){t("UvCS")}var i=t("Dd8w"),r=t.n(i),s={props:{dataList:{type:Object,required:!0},upParam:{type:Object,default:{page:1,pageSize:20}},simple:{type:Boolean,default:!1}},data:function(){return{pageSizes:this.$store.getters.getpageSizes,layoutStr1:"total, sizes, prev, pager, next, jumper",layoutStr2:"total, prev, pager, next"}},watch:{},computed:{pageLabel:function(){}},mounted:function(){},methods:{handleSizeChange:function(n){console.log("come in");var e=r()({},this.upParam);e.page=1,e.pageSize=n,this.$store.commit("set_current_temp_pagesize",n),this.$emit("loadMethod",e)},handleCurrentChange:function(n){var e=r()({},this.upParam);e.pageSize=this.$store.getters.getTpagesize,e.page=n,this.$emit("loadMethod",e)}}},o=function(){var n=this,e=n.$createElement,t=n._self._c||e;return t("div",{staticClass:"alignItem casepage"},[t("el-pagination",{attrs:{"current-page":n.dataList.page,"page-size":n.dataList.pageSize,"page-sizes":n.pageSizes,layout:n.simple?n.layoutStr2:n.layoutStr1,total:n.dataList.total},on:{"size-change":n.handleSizeChange,"current-change":n.handleCurrentChange,"update:currentPage":function(e){n.$set(n.dataList,"page",e)}}})],1)},p=[],c={render:o,staticRenderFns:p},g=c,u=t("VU/8"),l=a,d=u(s,g,!1,l,"data-v-051746fc",null);e.a=d.exports}});
+webpackJsonp([0],{"Nym/":function(n,e,t){e=n.exports=t("FZ+f")(!1),e.push([n.i,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/* 分页 */\n.alignItem[data-v-051746fc] {\n    padding: 5px;\n    text-align: center;\n}\n.casepage[data-v-051746fc] {\n    background-color: #032d58;\n}\n",""])},UvCS:function(n,e,t){var a=t("Nym/");"string"==typeof a&&(a=[[n.i,a,""]]),a.locals&&(n.exports=a.locals);t("rjj0")("25aee9ce",a,!0,{})},cMGX:function(n,e,t){"use strict";function a(n){t("UvCS")}var i=t("Dd8w"),r=t.n(i),s={props:{dataList:{type:Object,required:!0},upParam:{type:Object,default:{page:1,pageSize:20}},simple:{type:Boolean,default:!1}},data:function(){return{pageSizes:this.$store.getters.getpageSizes,layoutStr1:"total, sizes, prev, pager, next, jumper",layoutStr2:"total, prev, pager, next"}},watch:{},computed:{pageLabel:function(){}},mounted:function(){},methods:{handleSizeChange:function(n){console.log("come in");var e=r()({},this.upParam);e.page=1,e.pageSize=n,this.$store.commit("set_current_temp_pagesize",n),this.$emit("loadMethod",e)},handleCurrentChange:function(n){var e=r()({},this.upParam);e.pageSize=this.$store.getters.getTpagesize,e.page=n,this.$emit("loadMethod",e)}}},o=function(){var n=this,e=n.$createElement,t=n._self._c||e;return t("div",{staticClass:"alignItem casepage"},[t("el-pagination",{attrs:{"current-page":n.dataList.page,"page-size":n.dataList.pageSize,"page-sizes":n.pageSizes,layout:n.simple?n.layoutStr2:n.layoutStr1,total:n.dataList.total},on:{"size-change":n.handleSizeChange,"current-change":n.handleCurrentChange,"update:currentPage":function(e){n.$set(n.dataList,"page",e)}}})],1)},p=[],c={render:o,staticRenderFns:p},g=c,u=t("VU/8"),l=a,d=u(s,g,!1,l,"data-v-051746fc",null);e.a=d.exports}});

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff