diff --git a/src/custom/apaas-custom-mydemo/custom-page/approvalProgressDetail.vue b/src/custom/apaas-custom-mydemo/custom-page/approvalProgressDetail.vue index 1142705..75db610 100644 --- a/src/custom/apaas-custom-mydemo/custom-page/approvalProgressDetail.vue +++ b/src/custom/apaas-custom-mydemo/custom-page/approvalProgressDetail.vue @@ -39,17 +39,19 @@ 基础信息
-
+
流程主题 {{ progressDetail.progressTitle || '--' }}
-
- 模板名称 - {{ progressDetail.contentName || '--' }} -
-
- 版本 - {{ progressDetail.templateVersion || '--' }} +
+
+ 模板名称 + {{ progressDetail.contentName || '--' }} +
+
+ 版本 + {{ progressDetail.templateVersion || '--' }} +
@@ -764,7 +766,7 @@ export default { .detail-panel { width: 100%; - max-width: 1200px; + // max-width: 1200px; background: #ffffff; border-radius: 12px; overflow: hidden; @@ -842,24 +844,34 @@ export default { } .info-grid { - display: grid; - grid-template-columns: repeat(3, minmax(200px, 1fr)); - gap: 16px 24px; + .label { + font-size: 15px; + color: #909399; + } - .info-item { + .value { + font-size: 15px; + color: #303133; + font-weight: 500; + } + + .theme-info-item { display: flex; - flex-direction: column; - gap: 6px; - - .label { - font-size: 13px; - color: #909399; - } - + gap: 16px 24px; + margin-bottom: 16px; .value { - font-size: 15px; - color: #303133; - font-weight: 500; + flex: 1; + } + } + + .remain-info { + display: flex; + gap: 16px 24px; + + .info-item { + flex: 1; + display: flex; + gap: 16px 24px; } } } diff --git a/src/custom/apaas-custom-mydemo/custom-page/engineCheck.vue b/src/custom/apaas-custom-mydemo/custom-page/engineCheck.vue index d3e15e8..399d32f 100644 --- a/src/custom/apaas-custom-mydemo/custom-page/engineCheck.vue +++ b/src/custom/apaas-custom-mydemo/custom-page/engineCheck.vue @@ -37,17 +37,19 @@ 基础信息
-
+
流程主题 {{ progressDetail.processTitle || '--' }}
-
- 机型名称 - {{ progressDetail.modelName || '--' }} -
-
- 发起人 - {{ progressDetail.applicant || '--' }} +
+
+ 机型名称 + {{ progressDetail.modelName || '--' }} +
+
+ 发起人 + {{ progressDetail.applicant || '--' }} +
@@ -862,7 +864,7 @@ export default { .detail-panel { width: 100%; - max-width: 1200px; + // max-width: 1200px; background: #ffffff; border-radius: 12px; overflow: hidden; @@ -939,26 +941,34 @@ export default { } .info-grid { - display: grid; - grid-template-columns: repeat(3, minmax(200px, 1fr)); - gap: 16px 24px; + .label { + font-size: 15px; + color: #909399; + } - .info-item { + .value { + font-size: 15px; + color: #303133; + font-weight: 500; + } + + .theme-info-item { display: flex; - flex-direction: row; - align-items: center; - gap: 8px; - - .label { - font-size: 16px; - color: #909399; - white-space: nowrap; - } - + gap: 16px 24px; + margin-bottom: 16px; .value { - font-size: 15px; - color: #303133; - font-weight: 500; + flex: 1; + } + } + + .remain-info { + display: flex; + gap: 16px 24px; + + .info-item { + flex: 1; + display: flex; + gap: 16px 24px; } } }