Commit 4172973e8553f4fe8d83940ca32f538d502dfcae

Authored by 陈威
1 parent 46f53064
Exists in master

update

backend/chkpower/pom.xml
... ... @@ -98,6 +98,24 @@
98 98 <!-- <version>${parent.version}</version>-->
99 99 <!-- <scope>compile</scope>-->
100 100 <!-- </dependency>-->
  101 +
  102 +
  103 + <dependency>
  104 + <groupId>cn.afterturn</groupId>
  105 + <artifactId>easypoi-base</artifactId>
  106 + <version>4.1.0</version>
  107 + </dependency>
  108 +
  109 + <dependency>
  110 + <groupId>cn.afterturn</groupId>
  111 + <artifactId>easypoi-web</artifactId>
  112 + <version>4.1.0</version>
  113 + </dependency>
  114 + <dependency>
  115 + <groupId>cn.afterturn</groupId>
  116 + <artifactId>easypoi-annotation</artifactId>
  117 + <version>4.1.0</version>
  118 + </dependency>
101 119 </dependencies>
102 120  
103 121  
... ...
frontend/front/public/config.js
... ... @@ -13,7 +13,8 @@ var defaultModulePortMap = {
13 13 }
14 14 window.getModuleRootUrl = function (module) {
15 15 // 默认是全部服务合一的端口
16   - var modulePort = '8076'
  16 + // var modulePort = '22581'
  17 + var modulePort = '6799'
17 18 if (!combine) {
18 19 modulePort = defaultModulePortMap[module]
19 20 }
... ...
frontend/front/src/views/matter/StartProcess.vue
1   -<script src="../../../node_modules/hotent-ui/lib/hotent-ui.common.js"></script>
2 1 <template>
3 2 <div class="start-process">
4 3 <flow-form
... ...