Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zrch-risk-39
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
zrch-risk-39
Commits
2ca4fbe4
提交
2ca4fbe4
authored
4月 28, 2026
作者:
kxjia
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
http://47.97.51.208/root/zrch-risk-39
上级
19686bd7
da0976ba
全部展开
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
46 行增加
和
17 行删除
+46
-17
TodoIndex.vue
...-39/src/views/flowable/task/todo/components/TodoIndex.vue
+6
-1
MyTaskFlowCc.api.ts
...risk-client-39/src/views/mytaskflowcc/MyTaskFlowCc.api.ts
+10
-0
MyTaskFlowCcList.vue
...isk-client-39/src/views/mytaskflowcc/MyTaskFlowCcList.vue
+6
-1
FlowTaskServiceImpl.java
...cg/modules/flowable/service/impl/FlowTaskServiceImpl.java
+0
-0
MyTaskFlowCcController.java
...ecg/modules/stm/my/controller/MyTaskFlowCcController.java
+13
-4
application-dev.yml
...jeecg-system-start/src/main/resources/application-dev.yml
+11
-11
没有找到文件。
zrch-risk-client-39/src/views/flowable/task/todo/components/TodoIndex.vue
浏览文件 @
2ca4fbe4
...
@@ -590,7 +590,7 @@
...
@@ -590,7 +590,7 @@
//alert("dd"+isFixed.value);
//alert("dd"+isFixed.value);
// if (!isFixed.value) {
// if (!isFixed.value) {
//alert("dd"+userType.value);
if
(
userType
.
value
===
'user'
)
{
if
(
userType
.
value
===
'user'
)
{
submitData
.
values
[
'approval'
]
=
formData
.
checkSendUser
;
submitData
.
values
[
'approval'
]
=
formData
.
checkSendUser
;
submitData
.
values
[
'copyUser'
]
=
formData
.
copyUser
;
submitData
.
values
[
'copyUser'
]
=
formData
.
copyUser
;
...
@@ -604,7 +604,12 @@
...
@@ -604,7 +604,12 @@
}
else
if
(
formData
.
checkSendRole
)
{
}
else
if
(
formData
.
checkSendRole
)
{
submitData
.
values
[
'approval'
]
=
formData
.
checkSendRole
;
submitData
.
values
[
'approval'
]
=
formData
.
checkSendRole
;
submitData
.
values
[
'approvalType'
]
=
'role'
;
submitData
.
values
[
'approvalType'
]
=
'role'
;
}
else
{
submitData
.
values
[
'approval'
]
=
formData
.
checkSendUser
;
submitData
.
values
[
'copyUser'
]
=
formData
.
copyUser
;
submitData
.
values
[
'approvalType'
]
=
'user'
;
}
}
console
.
log
(
"ssss why ----"
,
submitData
);
const
result
=
await
complete
(
submitData
);
const
result
=
await
complete
(
submitData
);
message
.
success
(
'任务发送成功'
);
message
.
success
(
'任务发送成功'
);
...
...
zrch-risk-client-39/src/views/mytaskflowcc/MyTaskFlowCc.api.ts
浏览文件 @
2ca4fbe4
...
@@ -11,6 +11,7 @@ enum Api {
...
@@ -11,6 +11,7 @@ enum Api {
deleteBatch
=
'/my/myTaskFlowCc/deleteBatch'
,
deleteBatch
=
'/my/myTaskFlowCc/deleteBatch'
,
importExcel
=
'/my/myTaskFlowCc/importExcel'
,
importExcel
=
'/my/myTaskFlowCc/importExcel'
,
exportXls
=
'/my/myTaskFlowCc/exportXls'
,
exportXls
=
'/my/myTaskFlowCc/exportXls'
,
updateStatus
=
'/my/myTaskFlowCc/updateStatus'
,
}
}
/**
/**
* 导出api
* 导出api
...
@@ -62,3 +63,12 @@ export const saveOrUpdate = (params, isUpdate) => {
...
@@ -62,3 +63,12 @@ export const saveOrUpdate = (params, isUpdate) => {
let
url
=
isUpdate
?
Api
.
edit
:
Api
.
save
;
let
url
=
isUpdate
?
Api
.
edit
:
Api
.
save
;
return
defHttp
.
post
({
url
:
url
,
params
});
return
defHttp
.
post
({
url
:
url
,
params
});
}
}
/**
* 抄送 抄阅 查看处理
* @param params
*/
export
const
updateStatus
=
(
params
)
=>
{
return
defHttp
.
delete
({
url
:
Api
.
updateStatus
,
params
},
{
joinParamsToUrl
:
true
}).
then
(()
=>
{
//handleSuccess();
});
}
zrch-risk-client-39/src/views/mytaskflowcc/MyTaskFlowCcList.vue
浏览文件 @
2ca4fbe4
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
import
{
useListPage
}
from
'/@/hooks/system/useListPage'
import
{
useListPage
}
from
'/@/hooks/system/useListPage'
import
MyTaskFlowCcModal
from
'./components/MyTaskFlowCcModal.vue'
import
MyTaskFlowCcModal
from
'./components/MyTaskFlowCcModal.vue'
import
{
columns
,
searchFormSchema
,
superQuerySchema
}
from
'./MyTaskFlowCc.data'
;
import
{
columns
,
searchFormSchema
,
superQuerySchema
}
from
'./MyTaskFlowCc.data'
;
import
{
list
,
deleteOne
,
batchDelete
,
getImportUrl
,
getExportUrl
}
from
'./MyTaskFlowCc.api'
;
import
{
list
,
deleteOne
,
batchDelete
,
getImportUrl
,
getExportUrl
,
updateStatus
}
from
'./MyTaskFlowCc.api'
;
import
{
downloadFile
}
from
'/@/utils/common/renderUtils'
;
import
{
downloadFile
}
from
'/@/utils/common/renderUtils'
;
import
{
useUserStore
}
from
'/@/store/modules/user'
;
import
{
useUserStore
}
from
'/@/store/modules/user'
;
import
{
useMessage
}
from
'/@/hooks/web/useMessage'
;
import
{
useMessage
}
from
'/@/hooks/web/useMessage'
;
...
@@ -265,6 +265,8 @@
...
@@ -265,6 +265,8 @@
const
myTaskFlow
=
await
getMyTaskFlow
({
deploymentId
:
record
.
deployId
,
dataId
:
record
.
targetId
});
const
myTaskFlow
=
await
getMyTaskFlow
({
deploymentId
:
record
.
deployId
,
dataId
:
record
.
targetId
});
const
taskData
=
pickStartResult
(
myTaskFlow
);
const
taskData
=
pickStartResult
(
myTaskFlow
);
console
.
log
(
"--------------myTaskFlow "
,
myTaskFlow
);
if
(
!
taskData
||
!
taskData
.
taskId
)
{
if
(
!
taskData
||
!
taskData
.
taskId
)
{
message
.
error
(
'未获取到待办任务信息'
);
message
.
error
(
'未获取到待办任务信息'
);
return
;
return
;
...
@@ -281,6 +283,9 @@
...
@@ -281,6 +283,9 @@
isShowDrawer
.
value
=
true
;
isShowDrawer
.
value
=
true
;
await
nextTick
();
await
nextTick
();
refTodoIndex
.
value
?.
iniData
?.(
taskData
);
refTodoIndex
.
value
?.
iniData
?.(
taskData
);
updateStatus
({
id
:
record
.
id
});
handleSuccess
();
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
error
(
'获取流程任务信息失败:'
,
e
);
console
.
error
(
'获取流程任务信息失败:'
,
e
);
message
.
error
(
'获取任务信息失败,请重试'
);
message
.
error
(
'获取任务信息失败,请重试'
);
...
...
zrch-risk-server-39/jeecg-module-system/jeecg-module-flowable/src/main/java/org/jeecg/modules/flowable/service/impl/FlowTaskServiceImpl.java
浏览文件 @
2ca4fbe4
差异被折叠。
点击展开。
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/my/controller/MyTaskFlowCcController.java
浏览文件 @
2ca4fbe4
package
org
.
jeecg
.
modules
.
stm
.
my
.
controller
;
package
org
.
jeecg
.
modules
.
stm
.
my
.
controller
;
import
java.util.Arrays
;
import
java.util.*
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.io.UnsupportedEncodingException
;
import
java.io.UnsupportedEncodingException
;
...
@@ -179,4 +176,16 @@ public class MyTaskFlowCcController extends JeecgController<MyTaskFlowCc, IMyTas
...
@@ -179,4 +176,16 @@ public class MyTaskFlowCcController extends JeecgController<MyTaskFlowCc, IMyTas
return
super
.
importExcel
(
request
,
response
,
MyTaskFlowCc
.
class
);
return
super
.
importExcel
(
request
,
response
,
MyTaskFlowCc
.
class
);
}
}
@DeleteMapping
(
value
=
"/updateStatus"
)
public
void
updateStatus
(
@RequestParam
(
name
=
"id"
,
required
=
true
)
String
id
)
{
MyTaskFlowCc
myTaskFlowCc
=
new
MyTaskFlowCc
();
myTaskFlowCc
.
setId
(
Integer
.
valueOf
(
id
));
myTaskFlowCc
.
setReadTime
(
new
Date
());
myTaskFlowCc
.
setStatus
(
"1"
);
myTaskFlowCcService
.
updateById
(
myTaskFlowCc
);
}
}
}
zrch-risk-server-39/jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml
浏览文件 @
2ca4fbe4
...
@@ -33,9 +33,9 @@ flowable:
...
@@ -33,9 +33,9 @@ flowable:
# enabled: false
# enabled: false
spring
:
spring
:
# main:
# main:
# # 启动加速 (建议开发环境,开启后flyway自动升级失效)
# # 启动加速 (建议开发环境,开启后flyway自动升级失效)
# lazy-initialization: true
# lazy-initialization: true
liquibase
:
liquibase
:
enabled
:
false
enabled
:
false
flyway
:
flyway
:
...
@@ -61,7 +61,7 @@ spring:
...
@@ -61,7 +61,7 @@ spring:
mail.smtp.writetimeout
:
10000
# 写入超时(毫秒)
mail.smtp.writetimeout
:
10000
# 写入超时(毫秒)
mail.smtp.auth
:
true
mail.smtp.auth
:
true
smtp.ssl.enable
:
true
smtp.ssl.enable
:
true
# mail.debug: true # 启用调试模式(查看详细日志)
# mail.debug: true # 启用调试模式(查看详细日志)
## quartz定时任务,采用数据库方式
## quartz定时任务,采用数据库方式
quartz
:
quartz
:
job-store-type
:
jdbc
job-store-type
:
jdbc
...
@@ -166,19 +166,19 @@ spring:
...
@@ -166,19 +166,19 @@ spring:
slow-sql-millis
:
5000
slow-sql-millis
:
5000
datasource
:
datasource
:
master
:
master
:
# url: jdbc:mysql://47.98.203.68:3306/zrch_stm_db_3.9?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
# url: jdbc:mysql://47.98.203.68:3306/zrch_stm_db_3.9?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
# username: root
# username: root
# password: ZhongRunChangHong/123
# password: ZhongRunChangHong/123
url
:
jdbc:mysql://localhost:3306/zrch_stm_db_3.9_new?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
url
:
jdbc:mysql://localhost:3306/zrch_stm_db_3.9_new?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
username
:
root
username
:
root
password
:
123456
password
:
123456
driver-class-name
:
com.mysql.cj.jdbc.Driver
driver-class-name
:
com.mysql.cj.jdbc.Driver
# # shardingjdbc数据源
# # shardingjdbc数据源
# sharding-db:
# sharding-db:
# driver-class-name: org.apache.shardingsphere.driver.ShardingSphereDriver
# driver-class-name: org.apache.shardingsphere.driver.ShardingSphereDriver
# url: jdbc:shardingsphere:classpath:sharding.yaml
# url: jdbc:shardingsphere:classpath:sharding.yaml
#redis 配置
#redis 配置
data
:
data
:
redis
:
redis
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论