Commit 42fad2dd0406452f99c971b69539df702d42dc74

Authored by youxiw2000
1 parent 9d500e9d

m

trash-ui/src/layout/index.vue
1 <template> 1 <template>
  2 + <div :class="classObj" class="app-wrapper">
  3 + <sidebar class="sidebar-container" />
  4 + <div :class="{hasTagsView:needTagsView}" class="main-container">
  5 + <tags-view v-if="needTagsView" />
2 <app-main /> 6 <app-main />
  7 +
  8 + </div>
  9 + </div>
3 </template> 10 </template>
4 11
5 <script> 12 <script>
trash-ui/src/layout/index55.vue renamed to trash-ui/src/layout/index5.vue
1 <template> 1 <template>
2 - <div :class="classObj" class="app-wrapper">  
3 - <sidebar class="sidebar-container" />  
4 - <div :class="{hasTagsView:needTagsView}" class="main-container">  
5 - <tags-view v-if="needTagsView" />  
6 <app-main /> 2 <app-main />
7 -  
8 - </div>  
9 - </div>  
10 </template> 3 </template>
11 4
12 <script> 5 <script>
trash-ui/src/views/activiti/task/contractInfo.vue
@@ -18,13 +18,6 @@ @@ -18,13 +18,6 @@
18 <el-col :span="6" class="bd bd_left">有效期结束时间</el-col> 18 <el-col :span="6" class="bd bd_left">有效期结束时间</el-col>
19 <el-col :span="6" class="bd">{{infoData.endTime}}</el-col> 19 <el-col :span="6" class="bd">{{infoData.endTime}}</el-col>
20 </el-row> 20 </el-row>
21 - <el-row >  
22 - <el-col :span="6" class="bd">消纳场名称</el-col>  
23 - <el-col :span="6" class="bd">{{infoData.earthSiteName}}</el-col>  
24 - <el-col :span="6" class="bd bd_left">工程名称</el-col>  
25 - <el-col :span="6" class="bd">{{infoData.constructionSiteName}}</el-col>  
26 - </el-row>  
27 -  
28 21
29 <el-row > 22 <el-row >
30 <el-col :span="6" class="bd">消纳合同编号</el-col> 23 <el-col :span="6" class="bd">消纳合同编号</el-col>
trash-workFlow/src/main/java/com/trash/workflow/service/impl/WorkflowServiceImpl.java
@@ -103,6 +103,9 @@ public class WorkflowServiceImpl implements IWorkflowService { @@ -103,6 +103,9 @@ public class WorkflowServiceImpl implements IWorkflowService {
103 String reason = map.get("reason").toString(); 103 String reason = map.get("reason").toString();
104 String startTime = map.get("startTime").toString(); 104 String startTime = map.get("startTime").toString();
105 String endTime = map.get("endTime").toString(); 105 String endTime = map.get("endTime").toString();
  106 + String areaCode = null;
  107 + if(map.get("area") != null)
  108 + areaCode = map.get("area").toString();
106 109
107 ProcessInstance processInstance = null; 110 ProcessInstance processInstance = null;
108 111
@@ -113,11 +116,7 @@ public class WorkflowServiceImpl implements IWorkflowService { @@ -113,11 +116,7 @@ public class WorkflowServiceImpl implements IWorkflowService {
113 116
114 117
115 if (flowType.equals("workflow_earthsites")) { 118 if (flowType.equals("workflow_earthsites")) {
116 - JSONObject earthsites = RemoteServerUtils.getEarthSitesInfo(map.get("id").toString());  
117 -  
118 - if (earthsites != null) {  
119 - updateProcess(processInstance, earthsites.getString("areaName"));  
120 - } 119 + PorcThreeStepTask(processInstance, areaCode);
121 } 120 }
122 121
123 Workflow workflow = new Workflow(); 122 Workflow workflow = new Workflow();
@@ -436,8 +435,6 @@ public class WorkflowServiceImpl implements IWorkflowService { @@ -436,8 +435,6 @@ public class WorkflowServiceImpl implements IWorkflowService {
436 } 435 }
437 } 436 }
438 437
439 - ;  
440 -  
441 void updateProcessKafka(org.activiti.engine.runtime.ProcessInstance processInstance, String placeName, String token) { 438 void updateProcessKafka(org.activiti.engine.runtime.ProcessInstance processInstance, String placeName, String token) {
442 Map map = new HashedMap<>(); 439 Map map = new HashedMap<>();
443 440