Commit 15d6c702 authored by 邓超's avatar 邓超

fix: 重构流程中心交互,改为导航模式

parent aa36af8a
Pipeline #66164 waiting for manual action with stages
......@@ -14,6 +14,7 @@
display: flex;
background-color: #e9f0ff;
justify-content: space-between;
margin: -12px 0 0 -12px;
.left {
display: flex;
......@@ -36,6 +37,25 @@
flex: 1;
height: 50px;
.tabBox {
display: flex;
.tab {
height: 50px;
line-height: 50px;
text-align: center;
padding: 0 20px;
cursor: pointer;
}
.activeTab {
color: #3D78FF;
}
}
.ant-tabs-tab {
height: 50px;
......@@ -43,15 +63,19 @@
border-bottom: none;
}
.ant-tabs-tab:hover {
color: rgba(0, 0, 0, 0.85);
}
.ant-tabs-tab .anticon {
margin-right: 0;
}
.ant-tabs-tab-active {
border-top: 2px solid #3D78FF;
border-bottom: none;
background: linear-gradient(0deg, #BED2F9 0%, #F2F7FF 100%);
color: #3D78FF;
// border-top: 2px solid #3D78FF;
// border-bottom: none;
// background: linear-gradient(0deg, #BED2F9 0%, #F2F7FF 100%);
// color: #3D78FF;
}
}
}
......@@ -81,8 +105,11 @@
.left {
margin-right: 490px;
margin-left: 7px;
span {
display: inline-block;
width: 60px;
font-size: 18px;
font-weight: 700;
color: #3D78FF;
......@@ -135,6 +162,7 @@
.flowTable {
flex: 1;
overflow-y: scroll;
position: relative;
.flowGroup {
.header {
......@@ -214,7 +242,28 @@
width: 333px;
height: 141px;
border-radius: 0 20px 20px 20px;
z-index: 1;
}
.maskHover {
background: linear-gradient(0deg, #A3C7F9 0%, #FFFFFF 99%);
opacity: 0.65;
}
.buttonBox {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
left: 50%;
transform: translateX(-50%);
width: 333px;
height: 141px;
font-size: 16px;
z-index: 2;
.delete {
display: none;
......@@ -224,11 +273,9 @@
display: none;
margin-right: 10px;
}
}
.mask:hover {
background-color: rgba(0, 0, 0, 0.8);
.buttonHover {
.lookDetail {
display: block;
......@@ -239,6 +286,7 @@
display: block;
cursor: pointer;
}
}
.imgBox {
......
......@@ -43,7 +43,7 @@ const FlowModal = props => {
duration: 3,
description: modalType === 'add' ? '新增成功' : '编辑成功',
});
onSubumit();
onSubumit(validate.Type);
} else {
notification.error({
message: '提示',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment