Merge remote-tracking branch 'websoft/master'

This commit is contained in:
2026-08-06 02:57:58 +08:00
4 changed files with 87 additions and 34 deletions

View File

@@ -1736,7 +1736,7 @@ export default {
<style lang="scss" scoped>
.project-apply-form {
padding: 0 8px;
padding: 0;
:deep(.el-input),
:deep(.el-select),
@@ -1754,12 +1754,30 @@ export default {
line-height: 20px;
}
// 分区标题融入白色卡片顶部(与下方内容块拼成一张完整卡片)
:deep(.dialog-section-title:not(.project-apply-form__material-title)) {
position: relative;
z-index: 1;
display: flex;
align-items: center;
gap: 8px;
background: #fff;
border-radius: 6px 6px 0 0;
padding: 14px 16px 4px;
margin-bottom: 0;
font-weight: 500;
}
&__grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
column-gap: 72px;
row-gap: 0;
margin-bottom: 8px;
margin-bottom: 16px;
background: #fff;
border-radius: 0 0 6px 6px;
padding: 14px 16px 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
&__picker-icon {
@@ -1781,7 +1799,11 @@ export default {
&__table {
width: 100%;
margin-bottom: 24px;
margin-bottom: 16px;
background: #fff;
border-radius: 0 0 6px 6px;
padding: 12px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
:deep(.el-table__header th) {
background: #f5f7fa;
@@ -1795,6 +1817,12 @@ export default {
}
&__textarea-list {
margin-bottom: 16px;
background: #fff;
border-radius: 0 0 6px 6px;
padding: 14px 16px 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
:deep(.el-form-item) {
align-items: flex-start;
}
@@ -1808,12 +1836,15 @@ export default {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 8px;
margin-bottom: 16px;
background: #fff;
border-radius: 6px;
padding: 12px 16px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
&__material-title {
flex: 1;
margin-bottom: 14px;
}
&__material-warn {
@@ -1824,11 +1855,19 @@ export default {
}
&__upload {
margin: -12px 0 24px;
margin: 0 0 16px;
background: #fff;
border-radius: 6px;
padding: 12px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
&__change-textarea {
margin-bottom: 24px;
margin-bottom: 16px;
background: #fff;
border-radius: 0 0 6px 6px;
padding: 14px 16px 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
:deep(.el-form-item__content) {
width: 100%;
@@ -1840,7 +1879,9 @@ export default {
:global(.project-apply-dialog .el-dialog__body) {
max-height: 76vh;
overflow-y: auto;
padding: 16px 24px 8px;
overflow-x: hidden;
padding: 16px;
background: #f5f6fa;
}
.project-apply-dialog__footer {