|
|
|
@ -6,7 +6,7 @@
|
|
|
|
|
@import "./btn.scss";
|
|
|
|
|
@import "./buttonType.scss";
|
|
|
|
|
@import "./public.scss";
|
|
|
|
|
@import './font.css';
|
|
|
|
|
@import "./font.css";
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
height: 100%;
|
|
|
|
@ -195,9 +195,180 @@ aside {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* 此处的 div 可以依照情况替换成对应的元素名称 */
|
|
|
|
|
div::-webkit-scrollbar{
|
|
|
|
|
display:none
|
|
|
|
|
div::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
section::-webkit-scrollbar{
|
|
|
|
|
display:none
|
|
|
|
|
section::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail_content {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
// height: calc(100vh - 160px);
|
|
|
|
|
height: calc(100% - 40px);
|
|
|
|
|
.left_content {
|
|
|
|
|
// height: calc(100vh - 160px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 69.5%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
.right_content {
|
|
|
|
|
// height: calc(100vh - 160px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 30%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
.left_main {
|
|
|
|
|
height: 600px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
.empty {
|
|
|
|
|
.top {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #737373;
|
|
|
|
|
}
|
|
|
|
|
.bottom {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #737373;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.left_title {
|
|
|
|
|
height: 77px;
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
.tab_content {
|
|
|
|
|
// height: calc(100vh - 240px);
|
|
|
|
|
height: calc(100% - 77px);
|
|
|
|
|
// overflow: auto;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
::v-deep .el-tabs__content {
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: calc(100% - 50px);
|
|
|
|
|
.el-tab-pane {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.empty {
|
|
|
|
|
// height: calc(100vh - 300px);
|
|
|
|
|
// height: calc(100% - 100px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 10px 15px 0 15px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
.top {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #737373;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
.bottom {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #737373;
|
|
|
|
|
}
|
|
|
|
|
.step_contain {
|
|
|
|
|
position: relative;
|
|
|
|
|
line-height: 35px;
|
|
|
|
|
border-left: 2px solid green;
|
|
|
|
|
padding-bottom: 40px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
.drop_style {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
top: -4px;
|
|
|
|
|
left: -12px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
box-shadow: 0 0 10px #ccc;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.out_drop_style {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
top: 6px;
|
|
|
|
|
left: -3px;
|
|
|
|
|
background-color: #4eb997;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
.out_drop_style_one {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
|
|
|
|
.contain_main {
|
|
|
|
|
background-color: #f8fafb;
|
|
|
|
|
color: #192a92;
|
|
|
|
|
margin-left: 25px;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
.attach {
|
|
|
|
|
// display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
// padding-right: 100px;
|
|
|
|
|
position: relative;
|
|
|
|
|
.attach_left {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 140px;
|
|
|
|
|
}
|
|
|
|
|
.attach_right {
|
|
|
|
|
// flex: 1;
|
|
|
|
|
// flex-direction: column;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
padding: 0 80px 0 50px;
|
|
|
|
|
.attach_item {
|
|
|
|
|
width: 85%;
|
|
|
|
|
display: flex;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
color: inherit;
|
|
|
|
|
border: 1px solid #e4e7ed;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
margin: 10px 20px 10px 0;
|
|
|
|
|
a {
|
|
|
|
|
display: flex;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.li_img {
|
|
|
|
|
width: 25px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
}
|
|
|
|
|
.icon_name {
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.right-img {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 40px;
|
|
|
|
|
right: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.approval_img {
|
|
|
|
|
width: 85px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.step_contain_one {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|