Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
9efd9f1a
提交
9efd9f1a
authored
4月 22, 2020
作者:
王绍森
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
9038 评奖评优与创新创业,2,校团委审核是 做批量审核 (院团委校团委全部做)
上级
41c0930b
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
72 行增加
和
42 行删除
+72
-42
AuditPage.js
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
+47
-25
List.js
FormInsertDiy/AffairPage/AuditPage/List.js
+2
-2
AuditModal.js
FormInsertDiy/AuditPage/BatchAudit/AuditModal.js
+16
-7
index.js
FormInsertDiy/AuditPage/BatchAudit/index.js
+7
-8
没有找到文件。
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
浏览文件 @
9efd9f1a
import
pageSetting
from
'./pageSetting'
;
import
React
,
{
Component
,
Fragment
}
from
'react'
;
import
PageHeaderWrapper
from
'@/components/PageHeaderWrapper'
;
...
...
@@ -7,34 +5,66 @@ import List from '../ApplyPage/List';
import
ListTab
from
'./ListTab'
;
import
{
deepCopy
}
from
'@/baseComponent/utils'
;
import
{
getApplyPage
,
getHandledPage
,
getWaitPage
}
from
'../publicApiService'
;
import
AuditModal
from
'@/webPublic/FormInsertDiy/AuditPage/BatchAudit/AuditModal'
;
import
{
ModalInfo
}
from
'@/baseComponent/Modal'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
export
default
class
AuditPage
extends
Component
{
constructor
(
props
)
{
super
(
props
);
this
.
state
=
{
this
.
state
=
{};
}
};
componentDidMount
(){
}
componentDidMount
()
{}
handleButtonSet
=
()
=>
{
const
{
addFields
,
workId
}
=
this
.
props
;
return
{
tab1
:
[
{
type
:
'audit'
,
component
:
'RenderComponent'
,
render
:
({
selectRows
,
getPage
})
=>
{
const
disabled
=
!
selectRows
||
!
Array
.
isArray
(
selectRows
)
||
!
selectRows
.
length
;
function
handleClick
(
onShow
)
{
const
taskName
=
selectRows
[
0
].
taskName
;
const
differentTask
=
selectRows
.
slice
(
1
).
find
(
i
=>
i
.
taskName
!==
taskName
);
if
(
differentTask
)
{
return
ModalInfo
((
<
div
>
<
strong
style
=
{{
color
:
"red"
}}
>
{
differentTask
.
taskName
}
<
/strong
>
和
<
strong
>
{
taskName
}
<
/strong>不能一起审核。<br /
>
请将分开操作。
<
/div
>
));
}
onShow
();
}
return
(
<
AuditModal
selectRows
=
{
selectRows
}
getPage
=
{
getPage
}
>
{({
onShow
})
=>
(
<
ButtonDiy
name
=
"批量审核"
handleClick
=
{()
=>
handleClick
(
onShow
)}
disabled
=
{
disabled
}
/
>
)}
<
/AuditModal
>
);
},
},
],
tab2
:
[],
};
};
handleSearchSet
=
()
=>
{
const
{
columns
,
searchCondition
}
=
this
.
props
;
const
{
columns
,
searchCondition
}
=
this
.
props
;
const
tab1
=
{
search
:
{
field
:
{
},
field
:
{},
getPageService
:
getWaitPage
,
responseCallBack
:
(
response
)
=>
{
responseCallBack
:
response
=>
{
return
response
;
},
condition
:
searchCondition
,
...
...
@@ -46,10 +76,9 @@ export default class AuditPage extends Component {
};
const
tab2
=
{
search
:
{
field
:
{
},
field
:
{},
getPageService
:
getHandledPage
,
responseCallBack
:
(
response
)
=>
{
responseCallBack
:
response
=>
{
return
response
;
},
condition
:
searchCondition
,
...
...
@@ -70,22 +99,15 @@ export default class AuditPage extends Component {
return
(
<
PageHeaderWrapper
title
=
""
>
<
ListTab
tabList
=
{
pageSetting
.
tabList
}
pageButton
=
{
this
.
handleButtonSet
({
})}
<
ListTab
tabList
=
{
pageSetting
.
tabList
}
pageButton
=
{
this
.
handleButtonSet
({})}
workId
=
{
workId
}
dataBaseId
=
{
dataBaseId
}
addFields
=
{
addFields
}
pageSearch
=
{
this
.
handleSearchSet
({
})}
/
>
pageSearch
=
{
this
.
handleSearchSet
({})}
/
>
<
/PageHeaderWrapper
>
);
}
}
FormInsertDiy/AffairPage/AuditPage/List.js
浏览文件 @
9efd9f1a
...
...
@@ -306,8 +306,8 @@ export default class List extends Component {
/> : null
}
<
Shell
>
{
this
.
pageButton
()
.
length
?
<
ButtonListDom
config
=
{
this
.
pageButton
()
}
{
pageButton
.
length
?
<
ButtonListDom
config
=
{
pageButton
}
handleSelectRows
=
{
this
.
handleSelectRows
}
selectRows
=
{
selectRows
}
formValues
=
{
formValues
}
...
...
FormInsertDiy/AuditPage/BatchAudit/AuditModal.js
浏览文件 @
9efd9f1a
...
...
@@ -10,14 +10,15 @@ import { router } from 'umi';
const
isNewForm
=
true
;
function
AuditModal
({
form
,
selectRows
,
c
ode
,
getPage
})
{
function
AuditModal
({
form
,
selectRows
,
c
hildren
,
getPage
})
{
const
[
visible
,
setVisible
]
=
useState
(
false
);
const
disabled
=
!
selectRows
||
!
Array
.
isArray
(
selectRows
)
||
!
selectRows
.
length
;
function
submitCb
(
res
)
{
ModalInfo
(
`提交
${
res
?
'成功'
:
'失败'
}
!`
,
{
onOk
:
()
=>
router
.
goBack
()
});
// ModalInfo(`提交${res ? '成功' : '失败'}!`, { onOk: () => router.goBack() });
ModalInfo
(
`提交
${
res
?
'成功'
:
'失败'
}
!`
,
{
onOk
:
()
=>
{
setVisible
(
false
);
getPage
();
}
});
}
const
[
data
,
setData
]
=
useState
(
null
);
const
[
loading
,
setLoading
]
=
useState
(
false
);
...
...
@@ -25,13 +26,13 @@ function AuditModal({ form, selectRows, code, getPage }) {
useEffect
(
()
=>
{
if
(
!
visible
)
return
;
const
code
=
selectRows
&&
selectRows
[
0
]
&&
selectRows
[
0
].
code
;
if
(
typeof
code
===
'undefined'
)
return
;
setLoading
(
true
);
getHistoryFormDetail
({
code
}).
then
(
res
=>
{
setLoading
(
false
);
if
(
res
&&
!
res
.
errMsg
)
{
setData
({...
res
,
hisTaskForm
:
{...
res
.
hisTaskForm
,
formKeys
:
[]}});
setData
({
...
res
,
hisTaskForm
:
{
...
res
.
hisTaskForm
,
formKeys
:
[]
}
});
}
});
},
...
...
@@ -48,9 +49,17 @@ function AuditModal({ form, selectRows, code, getPage }) {
/
>
<
/div
>
)
:
null
;
return
(
<>
<
Modal
width
=
{
900
}
visible
=
{
visible
}
title
=
"批量审核"
footer
=
{
footer
}
onCancel
=
{()
=>
setVisible
(
false
)}
>
<
Modal
width
=
{
900
}
visible
=
{
visible
}
title
=
"批量审核"
footer
=
{
footer
}
onCancel
=
{()
=>
setVisible
(
false
)}
>
<
Spin
spinning
=
{
loading
}
>
{
data
&&
(
<>
...
...
@@ -65,7 +74,7 @@ function AuditModal({ form, selectRows, code, getPage }) {
)}
<
/Spin
>
<
/Modal
>
<
ButtonDiy
name
=
"批量审核"
handleClick
=
{()
=>
setVisible
(
true
)}
disabled
=
{
disabled
}
/
>
{
children
({
onShow
:
()
=>
setVisible
(
true
)})}
<
/
>
);
}
...
...
FormInsertDiy/AuditPage/BatchAudit/index.js
浏览文件 @
9efd9f1a
...
...
@@ -4,6 +4,7 @@ import getInfoGenerator from '@/webPublic/FormInsertDiy/getInfoGenerator';
import
AuditModal
from
'./AuditModal'
;
import
{
findValueByKey
}
from
'../../../../pages/zydtw/Cxcy/utils'
;
import
withGoBack
from
'@/highOrderComponent/withGoBack'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
const
defaultNameSpan
=
{
big
:
9
,
small
:
9
};
const
defaultFieldSpan
=
{
big
:
4
,
small
:
4
};
...
...
@@ -27,7 +28,6 @@ export default withGoBack(function BatchAudit({
pageButton
,
pageSetting
,
})
{
const
[
code
,
setCode
]
=
useState
(
null
);
const
pageSearch
=
{
search
:
{
searchType
:
'cascadeSearchNew'
,
...
...
@@ -46,12 +46,6 @@ export default withGoBack(function BatchAudit({
condition
:
condition
||
[],
nameSpan
:
nameSpan
||
defaultNameSpan
,
fileSpan
:
fieldSpan
||
defaultFieldSpan
,
responseCallBack
:
res
=>
{
if
(
res
&&
res
.
rows
&&
res
.
rows
[
0
])
{
setCode
(
findValueByKey
(
res
.
rows
[
0
],
'code'
));
}
return
res
;
},
},
tableRowKey
:
tableRowKey
||
'buzinessId'
,
columns
:
columns
||
[],
...
...
@@ -63,7 +57,12 @@ export default withGoBack(function BatchAudit({
name
:
'批量审核'
,
component
:
'RenderComponent'
,
render
:
({
selectRows
,
getPage
})
=>
{
return
<
AuditModal
selectRows
=
{
selectRows
}
getPage
=
{
getPage
}
code
=
{
code
}
/>
;
const
disabled
=
!
selectRows
||
!
Array
.
isArray
(
selectRows
)
||
!
selectRows
.
length
;
return
(
<
AuditModal
selectRows
=
{
selectRows
.
map
(
i
=>
({...
i
,
code
:
findValueByKey
(
i
,
'code'
)}))}
getPage
=
{
getPage
}
>
{({
onShow
})
=>
<
ButtonDiy
name
=
"批量审核"
handleClick
=
{
onShow
}
disabled
=
{
disabled
}
/>
}
<
/AuditModal
>
);
},
},
];
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论