diff --git a/src/views/analysis/components/AnalysisDetail.vue b/src/views/analysis/components/AnalysisDetail.vue index 9c015a8..1b32eb6 100644 --- a/src/views/analysis/components/AnalysisDetail.vue +++ b/src/views/analysis/components/AnalysisDetail.vue @@ -3,86 +3,90 @@
返回
- - -
- - - -
-
项目名称
-
{{ detailData.proName || '--' }}
-
-
- -
-
项目编号
-
{{ detailData.proCode || '--' }}
-
-
-
- - - -
-
招标人
-
{{ detailData.bidder || '--' }}
-
-
- -
-
代理机构
-
{{ detailData.agency || '--' }}
-
-
-
- - - -
-
开标时间
-
{{ detailData.openTime || '--' }}
-
-
- -
-
开标方式
-
{{ detailData.openMethod || '--' }}
-
-
-
- - -
-
项目简介
-
{{ detailData.proDescription || '--' }}
-
-
-
-
- - @@ -180,8 +184,35 @@ export default { .analysis-detail-container { padding: 24px; background: linear-gradient(180deg, #F1F6FF 20%, #E5EFFF 100%); - min-height: 100vh; + height: calc(100vh - 84px); + display: flex; + flex-direction: column; + overflow: hidden; +} + +.content-scrollable { + flex: 1; overflow-y: auto; + overflow-x: hidden; + padding-right: 6px; // 为滚动条留出空间 + + // 自定义滚动条样式 + &::-webkit-scrollbar { + width: 6px; + } + + &::-webkit-scrollbar-track { + background: transparent; + } + + &::-webkit-scrollbar-thumb { + background: rgba(0, 0, 0, 0.2); + border-radius: 3px; + + &:hover { + background: rgba(0, 0, 0, 0.3); + } + } } .content-header { @@ -217,6 +248,7 @@ export default { border-radius: 8px; box-shadow: 0px 4px 20px 0px rgba(31, 35, 55, 0.1); border: none; + margin-top: 5px; margin-bottom: 10px; ::v-deep .el-card__header { @@ -262,8 +294,8 @@ export default { .detail-field { .field-label { - color: #606266; - font-size: 14px; + color: #424242; + font-size: 18px; font-weight: 500; margin-bottom: 8px; line-height: 1.5; @@ -291,4 +323,8 @@ export default { } } } + +.table-container { + margin-bottom: 5px; +} \ No newline at end of file diff --git a/src/views/analysis/components/BidForm.vue b/src/views/analysis/components/BidForm.vue index bb4b1f2..06aa51e 100644 --- a/src/views/analysis/components/BidForm.vue +++ b/src/views/analysis/components/BidForm.vue @@ -2,7 +2,7 @@ -
+