Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
前端-黄佳鑫
jinfa-platform
Commits
95508cac
Commit
95508cac
authored
May 18, 2021
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 补充声明&添加外部状态判断显示
parent
f3a3fc57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
24 deletions
+61
-24
index.tsx
src/components/AuditProcess/index.tsx
+61
-24
No files found.
src/components/AuditProcess/index.tsx
View file @
95508cac
...
...
@@ -2,48 +2,81 @@
* @Author: XieZhiXiong
* @Date: 2020-09-15 17:48:36
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-0
1-13 15:36:08
* @LastEditTime: 2021-0
5-18 15:08:09
* @Description: 内外部流转记录组件
*/
import
React
,
{
useState
}
from
'react'
;
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Steps
,
Tabs
,
}
from
'antd'
;
import
MellowCard
,
{
MellowCardProps
}
from
'@/components/MellowCard'
;
import
ButtonSwitch
from
'@/components/ButtonSwitch'
;
import
styles
from
'./index.less'
;
export
interface
StepsItem
{
/**
* 当前步骤
*/
step
?:
number
,
/**
* 步骤名
*/
stepName
?:
string
,
/**
* 角色名,也可以作为辅助信息使用
*/
roleName
:
string
,
/**
* 当前步骤的状态
*/
status
?:
'wait'
|
'process'
|
'finish'
|
'error'
,
}
interface
AuditProcessProp
extends
MellowCardProps
{
outerVerifyCurrent
?:
number
;
innerVerifyCurrent
?:
number
;
outerVerifySteps
?:
{
step
:
number
,
stepName
:
string
,
roleName
:
string
,
status
?:
'wait'
|
'process'
|
'finish'
|
'error'
,
}[];
innerVerifySteps
?:
{
step
:
number
,
stepName
:
string
,
roleName
:
string
,
status
?:
'wait'
|
'process'
|
'finish'
|
'error'
,
}[];
/**
* 当前外部流程步骤
*/
outerVerifyCurrent
?:
number
/**
* 当前内部流程步骤
*/
innerVerifyCurrent
?:
number
/**
* 当前外部流程
*/
outerVerifySteps
?:
StepsItem
[]
/**
* 当前内部流程
*/
innerVerifySteps
?:
StepsItem
[]
/**
* 自定义item 步骤名键名
*/
customTitleKey
?:
string
/**
* 自定义item key键名
*/
customKey
?:
string
};
const
AuditProcess
:
React
.
FC
<
AuditProcessProp
>
=
({
outerVerifyCurrent
=
0
,
innerVerifyCurrent
=
0
,
outerVerifySteps
=
[]
,
innerVerifySteps
=
[]
,
outerVerifySteps
,
innerVerifySteps
,
customTitleKey
,
customKey
,
...
rest
})
=>
{
const
[
radioValue
,
setRadioValue
]
=
useState
<
(
'inner'
|
'outer'
)
>
(
'inner'
);
useEffect
(()
=>
{
// 这里判断如果只有外部步骤,没有内部步骤的时候,默认设置 radioValue 为 outer
if
(
Array
.
isArray
(
outerVerifySteps
)
&&
!
Array
.
isArray
(
innerVerifySteps
))
{
setRadioValue
(
'outer'
);
}
},
[
outerVerifySteps
]);
const
handleRadioChange
=
(
value
:
(
'inner'
|
'outer'
))
=>
{
setRadioValue
(
value
);
};
...
...
@@ -55,14 +88,18 @@ const AuditProcess: React.FC<AuditProcessProp> = ({
?
{
label
:
'外部流转'
,
value
:
'outer'
,
disabled
:
!
outerVerifySteps
||
!
outerVerifySteps
.
length
,
}
:
null
),
{
label
:
'内部流转'
,
value
:
'inner'
,
},
(
innerVerifySteps
&&
innerVerifySteps
.
length
?
{
label
:
'内部流转'
,
value
:
'inner'
,
}
:
null
),
].
filter
(
Boolean
);
return
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment