增加发布协议确认配置

This commit is contained in:
yml2213
2026-06-07 21:14:49 +08:00
parent 954c3d6be3
commit eebd2d3b04
19 changed files with 760 additions and 13 deletions
@@ -679,14 +679,11 @@
position: sticky;
top: var(--summary-sticky-top);
align-self: start;
max-height: calc(100vh - var(--summary-sticky-top) - 24px);
}
.summary-panel {
padding: 16px;
max-height: inherit;
overflow-y: auto;
overscroll-behavior: contain;
padding: 14px;
overflow: visible;
border: 1px solid #e6ebf2;
border-radius: var(--radius-8);
background: #fff;
@@ -710,9 +707,9 @@
.summary-breakdown {
display: grid;
gap: 10px;
margin-top: 14px;
padding: 12px;
gap: 8px;
margin-top: 12px;
padding: 10px;
border: 1px solid #ffe1c7;
border-radius: var(--radius-8);
background: #fffaf6;
@@ -745,15 +742,15 @@
.summary-list {
display: grid;
gap: 10px;
margin: 14px 0;
gap: 8px;
margin: 12px 0;
}
.summary-list div {
display: flex;
justify-content: space-between;
gap: 12px;
padding-bottom: 10px;
padding-bottom: 8px;
border-bottom: 1px solid #eef2f6;
}
@@ -764,6 +761,76 @@
text-align: right;
}
.publish-agreement-panel {
display: grid;
gap: 6px;
margin-bottom: 12px;
padding: 8px 10px;
border: 1px solid #eef2f6;
border-radius: var(--radius-8);
background: #f8fafc;
}
.publish-agreement-panel :deep(.el-checkbox) {
align-items: center;
height: 24px;
margin-right: 0;
white-space: nowrap;
}
.publish-agreement-panel :deep(.el-checkbox__label) {
min-width: 0;
line-height: 1.2;
}
.agreement-check-label {
display: inline-flex;
align-items: center;
gap: 2px;
width: 100%;
max-width: 100%;
min-width: 0;
color: var(--color-text-main);
font-size: 12px;
font-weight: 800;
white-space: nowrap;
}
.agreement-link {
display: inline-block;
min-width: 0;
max-width: 100%;
overflow: hidden;
padding: 0;
border: none;
background: transparent;
color: #1477ff;
font: inherit;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer;
}
.agreement-link:hover {
color: #0f5fd0;
text-decoration: underline;
}
.agreement-dialog-content {
max-height: 62vh;
overflow: auto;
padding: 14px;
border: 1px solid #d8dee9;
border-radius: var(--radius-8);
background: #f8fafc;
color: #1f2937;
font-size: 13px;
font-weight: 700;
line-height: 1.75;
white-space: pre-wrap;
}
.summary-actions {
display: grid;
gap: 10px;