Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
d0f50536
提交
d0f50536
authored
10月 16, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
禅道30031 特定流程已办理页面增加导出按钮
上级
17294f9c
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
60 行增加
和
2 行删除
+60
-2
List.js
FormInsertDiy/AffairPage/AuditPage/List.js
+1
-0
exportHandledInfo.js
FormInsertDiy/AffairPage/AuditPage/exportHandledInfo.js
+38
-0
index.js
FormInsertDiy/AffairPage/ButtonListDom/index.js
+2
-2
ActiveMenuComponent.js
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
+19
-0
没有找到文件。
FormInsertDiy/AffairPage/AuditPage/List.js
浏览文件 @
d0f50536
...
...
@@ -332,6 +332,7 @@ export default class List extends Component {
search
=
{
pageSearch
.
search
}
getPage
=
{
this
.
getPage
}
children
=
{
children
}
columns
=
{
columns
}
/
>
)
:
null
}
<
StandardTable
{...
tableProps
}
/
>
...
...
FormInsertDiy/AffairPage/AuditPage/exportHandledInfo.js
0 → 100644
浏览文件 @
d0f50536
/**
* 禅道 30031 已处理的页面增加导出按钮
* */
import
{
message
}
from
'antd'
;
import
React
from
'react'
;
import
{
downloadFile
}
from
'@/webPublic/one_stop_public/Table/globalFunction'
;
export
default
function
exportHandledInfo
({
columns
=
[],
appId
=
'1492048888356405248'
,
type
=
'handled'
,
})
{
const
headers
=
columns
.
filter
((
g
)
=>
{
return
g
.
dataIndex
!==
'operationDiy'
;
}).
map
((
g
)
=>
{
if
(
g
.
title
===
'流程审核状态'
){
return
{
key
:
'formStatusName'
,
title
:
g
.
title
,
};
}
return
{
key
:
g
.
dataIndex
,
title
:
g
.
title
,
};
});
const
data
=
{
appId
,
type
,
headers
:
JSON
.
stringify
(
headers
),
};
if
(
appId
){
message
.
info
(
'正在导出文件,请耐心等待'
);
let
url
=
window
.
CONFIG
.
OAUTH_ACTION_PATH
+
'/UnifiedAppFormApi/exportData'
;
downloadFile
(
url
,
data
);
}
}
FormInsertDiy/AffairPage/ButtonListDom/index.js
浏览文件 @
d0f50536
...
...
@@ -5,7 +5,7 @@ import ModalForm from './ModalForm';
export
default
class
ButtonListDom
extends
Component
{
render
()
{
const
{
config
,
getPage
,
selectRows
,
formValues
,
children
,
search
,
listData
}
=
this
.
props
;
const
{
config
,
getPage
,
selectRows
,
formValues
,
children
,
search
,
listData
,
columns
}
=
this
.
props
;
return
(
<
div
style
=
{{
height
:
'50px'
,
padding
:
'12px 0 12px 12px'
,
positon
:
'relative'
}}
>
{
config
.
map
((
item
,
i
)
=>
{
...
...
@@ -33,7 +33,7 @@ export default class ButtonListDom extends Component {
key
=
{
item
.
type
}
className
=
{
item
.
className
||
'defaultBule'
}
handleClick
=
{()
=>
{
item
.
handleClick
(
selectRows
,
formValues
,
getPage
,
search
);
item
.
handleClick
(
selectRows
,
formValues
,
getPage
,
search
,
columns
);
}}
/
>
);
...
...
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
浏览文件 @
d0f50536
...
...
@@ -12,6 +12,8 @@ import Detail from '@/webPublic/FormInsertDiy/AffairPage/Detail'; //详情
import
{
Modal
,
message
,
notification
,
Popconfirm
}
from
'antd'
;
import
{
connect
}
from
'dva'
;
import
router
from
'umi/router'
;
import
{
getIsQian_Nan
}
from
'@/webPublic/zyd_public/utils/getSchoolType'
;
import
exportHandledInfo
from
'@/webPublic/FormInsertDiy/AffairPage/AuditPage/exportHandledInfo'
;
export
const
CreateC
=
createContext
({
routerConfig
:
{},
...
...
@@ -74,6 +76,23 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
Res
=
<
Apply
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
case
'Audit'
:
// 审批类
if
(
appId
===
'1492048888356405248'
&&
getIsQian_Nan
()){
// 禅道30031
otherProps
.
tab2Buttons
=
[
{
type
:
'export'
,
name
:
'导出'
,
component
:
'Normal'
,
handleClick
:
(
selectRows
,
formValues
,
getPage
,
search
,
columns
)
=>
{
exportHandledInfo
({
columns
,
appId
,
handled
:
'handled'
,
});
},
},
];
}
Res
=
<
Audit
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
case
'BatchAudit'
:
// 批量审批
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论