Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
3d4ca361
提交
3d4ca361
authored
12月 20, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
23704 学工通用流程审批界面新增支持流程节点下查询
上级
78f60e0b
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
45 行增加
和
8 行删除
+45
-8
AuditPage.js
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
+17
-5
destruction.js
FormInsertDiy/AffairPage/destruction.js
+22
-3
publicApiService.js
FormInsertDiy/AffairPage/publicApiService.js
+6
-0
没有找到文件。
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
浏览文件 @
3d4ca361
...
...
@@ -61,7 +61,7 @@ export default class AuditPage extends Component {
};
handleSearchSet
=
()
=>
{
const
{
columns
,
searchCondition
}
=
this
.
props
;
const
{
columns
,
searchCondition
,
allConfigSetInfo
}
=
this
.
props
;
console
.
log
(
searchCondition
);
const
tab1
=
{
search
:
{
...
...
@@ -71,7 +71,7 @@ export default class AuditPage extends Component {
beforeSearchData
:
(
data
)
=>
{
let
searcherKeyValue
=
{};
for
(
let
item
of
searchCondition
)
{
if
(
typeof
data
[
item
.
key
]
!==
'undefined'
)
{
if
(
typeof
data
[
item
.
key
]
!==
'undefined'
&&
item
.
key
!==
'taskDefKey'
)
{
searcherKeyValue
[
item
.
base52
]
=
data
[
item
.
key
];
}
}
...
...
@@ -83,7 +83,13 @@ export default class AuditPage extends Component {
responseCallBack
:
(
response
)
=>
{
return
response
;
},
condition
:
searchCondition
,
condition
:
searchCondition
.
filter
((
g
)
=>
{
if
(
!
allConfigSetInfo
.
isShowWaitTaskDef
){
return
g
.
key
!==
'taskDefKey'
;
}
else
{
return
true
;
}
}),
nameSpan
:
{
big
:
8
,
small
:
9
},
fileSpan
:
{
big
:
4
,
small
:
4
},
},
...
...
@@ -101,7 +107,7 @@ export default class AuditPage extends Component {
beforeSearchData
:
(
data
)
=>
{
let
searcherKeyValue
=
{};
for
(
let
item
of
searchCondition
)
{
if
(
typeof
data
[
item
.
key
]
!==
'undefined'
)
{
if
(
typeof
data
[
item
.
key
]
!==
'undefined'
&&
item
.
key
!==
'taskDefKey'
)
{
searcherKeyValue
[
item
.
base52
]
=
data
[
item
.
key
];
}
}
...
...
@@ -110,7 +116,13 @@ export default class AuditPage extends Component {
}
return
data
;
},
condition
:
searchCondition
,
condition
:
searchCondition
.
filter
((
g
)
=>
{
if
(
!
allConfigSetInfo
.
isShowHandledTaskDef
){
return
g
.
key
!==
'taskDefKey'
;
}
else
{
return
true
;
}
}),
nameSpan
:
{
big
:
8
,
small
:
9
},
fileSpan
:
{
big
:
4
,
small
:
4
},
},
...
...
FormInsertDiy/AffairPage/destruction.js
浏览文件 @
3d4ca361
...
...
@@ -5,6 +5,7 @@ import config from '@/config/config';
import
{
Tooltip
}
from
'antd'
;
import
moment
from
'moment'
;
import
React
from
'react'
;
import
{
findListTaskDefinition
}
from
'@/webPublic/FormInsertDiy/AffairPage/publicApiService'
;
const
handleSqlModels
=
(
sqlModels
,
defaultValues
)
=>
{
if
(
typeof
sqlModels
===
'undefined'
||
!
Array
.
isArray
(
sqlModels
))
{
...
...
@@ -283,13 +284,31 @@ export async function destructionGetDetail(response) {
}
}
const
searchCondition
=
await
getSearchCondition
(
basicPatternModel
?.
dataObjModels
[
0
]?.
id
);
// ,response.id),
if
(
response
.
isShowWaitTaskDef
||
response
.
isShowHandledTaskDef
)
{
let
optProcess
=
await
findListTaskDefinition
({
appId
:
response
.
id
,
});
if
(
optProcess
){
searchCondition
.
push
({
key
:
'taskDefKey'
,
name
:
'流程节点'
,
type
:
'select'
,
options
:
optProcess
.
map
((
g
)
=>
{
return
{
key
:
g
.
id
,
name
:
g
.
name
,
};
}),
});
}
}
return
{
addFields
:
await
translateAddFields
(
fileds
,
tableInfo
),
tableInfo
,
allConfigSetInfo
:
response
,
searchCondition
:
await
getSearchCondition
(
basicPatternModel
?.
dataObjModels
[
0
]?.
id
,
),
// ,response.id),
searchCondition
,
// 姚鑫国改这里
};
}
...
...
FormInsertDiy/AffairPage/publicApiService.js
浏览文件 @
3d4ca361
...
...
@@ -60,6 +60,11 @@ const getColumns = (workId) => {
return
apiRequest
(
'/UnifiedAppFormApi/getFormTitle'
,
{
id
:
workId
});
};
const
findListTaskDefinition
=
(
params
)
=>
{
// 获取表头 workId
return
apiRequest
(
'/UnifiedAppFormApi/findListTaskDefinition'
,
params
);
};
const
getHead
=
(
dataObjId
)
=>
{
// 获取表头 workId
return
apiRequest
(
'/DataColumnApi/getHeaderList'
,
{
dataObjId
});
...
...
@@ -238,4 +243,5 @@ export {
getSqlOptions
,
getHead
,
getGroupList
,
findListTaskDefinition
,
};
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论