|
|
|
|
@ -37,7 +37,10 @@
|
|
|
|
|
&.block1 {
|
|
|
|
|
background:
|
|
|
|
|
url('@/assets/business_envinformation/background1.svg'),
|
|
|
|
|
linear-gradient(180deg, #DBEBFF 0%, #DBEBFF 12.5%, rgba(255, 255, 255, 0.700824) 56%, rgba(255, 255, 255, 0.01) 100%);
|
|
|
|
|
|
|
|
|
|
linear-gradient(180deg, #DBEBFF 0%, #DBEBFF 12.5%, rgba(255, 255, 255, 0.700824) 56%, rgba(255, 255, 255, 0.01) 100%),
|
|
|
|
|
linear-gradient(0deg, #FFFFFF, #FFFFFF);
|
|
|
|
|
// linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
@ -117,6 +120,31 @@
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
|
|
|
|
|
// 特定数字颜色
|
|
|
|
|
&.number258 {
|
|
|
|
|
color: #0080FF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.number58 {
|
|
|
|
|
color: #EFB700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.number51 {
|
|
|
|
|
color: #00DA86;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.number28 {
|
|
|
|
|
color: #00DA86;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.number50 {
|
|
|
|
|
color: #FD0404;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.number58Second {
|
|
|
|
|
color: #A318E4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.blockTime {
|
|
|
|
|
@ -177,224 +205,215 @@
|
|
|
|
|
flex: 1; // 占满剩余空间
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
|
|
.sectionContent {
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
|
|
|
|
|
.leftBlock {
|
|
|
|
|
width: 28%;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: #fff;
|
|
|
|
|
// background-size: cover;
|
|
|
|
|
padding: 0;
|
|
|
|
|
// 第一行 - 表单控件
|
|
|
|
|
.formRow {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
|
|
.leftBlockTitle {
|
|
|
|
|
.addButton {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
|
|
.titleIcon {
|
|
|
|
|
width: 3px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
background-color: #2E4CD4;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border: 1px solid #00D48A;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
background: #00D48A;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #00B875;
|
|
|
|
|
border-color: #00B875;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.developmentContainer {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
|
|
|
|
.developmentBlock1 {
|
|
|
|
|
flex: 1;
|
|
|
|
|
background-color: #F1F7FF;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 15px 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.leftContent {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
|
|
.mainText {
|
|
|
|
|
color: #333333;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 500px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subText {
|
|
|
|
|
color: #666666;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightContent {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
min-width: 80px;
|
|
|
|
|
|
|
|
|
|
.importantTag {
|
|
|
|
|
background-color: #FFE0E2;
|
|
|
|
|
color: #FF3E48;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
width: 45px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.normalTag {
|
|
|
|
|
background-color: #DAF3FF;
|
|
|
|
|
color: #00AAFA;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
width: 45px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.buttonIcon {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightBlock {
|
|
|
|
|
width: calc(100% - 28% - 10px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.tableHeader {
|
|
|
|
|
.rightControls {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 8px 15px 5px 15px;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
|
|
.tableTitle {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
.filterLabel {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Select组件样式
|
|
|
|
|
:global(.ant-select) {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
height: 28px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.ant-select .ant-select-selector) {
|
|
|
|
|
height: 28px !important;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
border-radius: 2px !important;
|
|
|
|
|
display: flex !important;
|
|
|
|
|
align-items: center !important;
|
|
|
|
|
padding: 0 11px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.ant-select .ant-select-selection-item) {
|
|
|
|
|
line-height: 1.5714285714285714;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.titleIcon {
|
|
|
|
|
width: 3px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
background-color: #2E4CD4;
|
|
|
|
|
:global(.ant-select .ant-select-selection-placeholder) {
|
|
|
|
|
line-height: 1.5714285714285714;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #00000040 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchInput {
|
|
|
|
|
width: 150px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
border-color: #2E4CD4;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
|
color: #00000040;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tableActions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
.queryButton, .resetButton {
|
|
|
|
|
height: 28px;
|
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
|
|
|
|
.actionButton {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border: 1px solid #DFE4F6;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
&:hover {
|
|
|
|
|
border-color: #2E4CD4;
|
|
|
|
|
color: #2E4CD4;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 0px 8px;
|
|
|
|
|
background: transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #f0f2ff;
|
|
|
|
|
border-color: #2E4CD4;
|
|
|
|
|
}
|
|
|
|
|
.queryButton {
|
|
|
|
|
background-color: #00D48A;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-color: #00D48A;
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
background-color: #e6ebff;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #00B875;
|
|
|
|
|
border-color: #00B875;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buttonIcon {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.resetButton {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
color: #666;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tableContainer {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 10px 15px 0 15px; // 上边距10px,左右边距15px
|
|
|
|
|
// 第二行 - 表格
|
|
|
|
|
.tableSection {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
:global(.ant-table) {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
:global {
|
|
|
|
|
.ant-spin-nested-loading {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
:global(.ant-table-thead > tr > th) {
|
|
|
|
|
background-color: #f5f5fa;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
.ant-spin-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.ant-table-wrapper {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.ant-table {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-table-pagination {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin: 16px 0 0 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.ant-table-tbody > tr > td) {
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
.ant-table {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
|
|
:global(.ant-table-tbody > tr:hover > td) {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
.ant-table-thead > tr > th {
|
|
|
|
|
background-color: #fafafa;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #000000D9;
|
|
|
|
|
border-right: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-table-tbody > tr > td {
|
|
|
|
|
border-right: none;
|
|
|
|
|
color: #000000D9;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-table-tbody > tr:hover > td {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #1890ff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #40a9ff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.ant-pagination) {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
.ant-pagination {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -402,3 +421,94 @@
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 操作按钮图标样式
|
|
|
|
|
.eye-icon {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 12.5px;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 12.5px;
|
|
|
|
|
border: 2px solid #86F278;
|
|
|
|
|
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
background-color: #86F278;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
top: 3.5px;
|
|
|
|
|
left: 7px;
|
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: #1890ff;
|
|
|
|
|
top: 3px;
|
|
|
|
|
left: 2px;
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 2px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
background-color: #1890ff;
|
|
|
|
|
top: 2px;
|
|
|
|
|
left: 7px;
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.delete-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: #ff4d4f;
|
|
|
|
|
top: 7px;
|
|
|
|
|
left: 2px;
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: #ff4d4f;
|
|
|
|
|
top: 7px;
|
|
|
|
|
left: 2px;
|
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
|
}
|
|
|
|
|
}
|