Skip to content

Commit 2be2d75

Browse files
committed
bugfix/修复流程部署bug
1 parent 0b4966b commit 2be2d75

File tree

9 files changed

+6
-5
lines changed

9 files changed

+6
-5
lines changed
Loading

pmhub-boot/pmhub-ui/src/views/login.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export default {
174174
justify-content: center;
175175
align-items: center;
176176
height: 100%;
177-
background-image: url("../assets/images/login-background.jpg");
177+
background-image: url("../assets/images/login-background.png");
178178
background-size: cover;
179179
.title {
180180
margin: 0px auto 30px auto;

pmhub-boot/pmhub-ui/src/views/register.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export default {
151151
justify-content: center;
152152
align-items: center;
153153
height: 100%;
154-
background-image: url("../assets/images/login-background.jpg");
154+
background-image: url("../assets/images/login-background.png");
155155
background-size: cover;
156156
}
157157
.title {

pmhub-boot/pmhub-ui/src/views/workflow/work/detail.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="app-container">
33
<el-tabs tab-position="top" :value="finished === 'true' ? 'approval' : 'form'" @tab-click="tabClick">
44
<el-tab-pane label="任务办理" name="approval" v-if="finished === 'true'">
5-
<el-card class="box-card" shadow="hover" v-if="taskFormOpen">
5+
<el-card class="box-card" shadow="hover" v-if="false && taskFormOpen">
66
<div slot="header" class="clearfix">
77
<span>填写表单</span>
88
</div>

pmhub-boot/pmhub-workflow/src/main/java/com/laigeoffer/pmhub/workflow/listener/GlobalTaskCompletedListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected void taskCompleted(FlowableEngineEntityEvent event) {
4343
wfTaskMessageDealMapper.delete(qw);
4444
// 清理审批提醒消息
4545
RocketMqUtils.cleanMessage(taskEntity.getId() + "_" + taskEntity.getAssignee());
46-
OAUtils.restfulCall2(OAUtils.ALTER_MESSAGE_API, OAUtils.mapToStr(OAUtils.alterCustomMessageSingle(taskEntity.getId() + "_" + taskEntity.getAssignee(), OAMessageStatusEnum.DEAL.getStatus(), wfCopyMapper.selectUserById(Long.valueOf(taskEntity.getAssignee())).getUserName())), OAUtils.ALTER_MESSAGE_API);
46+
// OAUtils.restfulCall2(OAUtils.ALTER_MESSAGE_API, OAUtils.mapToStr(OAUtils.alterCustomMessageSingle(taskEntity.getId() + "_" + taskEntity.getAssignee(), OAMessageStatusEnum.DEAL.getStatus(), wfCopyMapper.selectUserById(Long.valueOf(taskEntity.getAssignee())).getUserName())), OAUtils.ALTER_MESSAGE_API);
4747
LogFactory.get().info("任务结束------------------------End---------------------->");
4848
}
4949
}

pmhub-boot/sql/pmhub_20240305.sql

+2-1
Large diffs are not rendered by default.
Loading
Loading

0 commit comments

Comments
 (0)