From d31a24ca22ffc8638ca8711eb3ee1cf5bbdecf73 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期一, 03 三月 2025 16:36:55 +0800 Subject: [PATCH] 修复新增巡查子任务时,巡查人员信息没有正确录入的问题 --- src/views/fysp/check/components/CompProblemCard.vue | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/views/fysp/check/components/CompProblemCard.vue b/src/views/fysp/check/components/CompProblemCard.vue index 534d6fb..afbeb8c 100644 --- a/src/views/fysp/check/components/CompProblemCard.vue +++ b/src/views/fysp/check/components/CompProblemCard.vue @@ -38,7 +38,7 @@ > </el-descriptions> - <el-scrollbar> + <el-scrollbar style="width: 70%;"> <el-descriptions title=" " :column="2" @@ -89,7 +89,7 @@ </el-col> <el-col :span="12"> <el-row justify="end" class="btn-group"> - <el-button type="danger" size="small" @click="deletePro" :disabled="false" + <el-button type="danger" size="small" @click="deletePro" :disabled="true" >鍒犻櫎</el-button > <!-- <el-button @@ -423,6 +423,7 @@ width: 240px; height: 250px; border-radius: 4px; + margin-bottom: 6px; } .d-index { @@ -446,14 +447,14 @@ .d-extra { } -.descriptions-label-1 { - color: whitesmoke; - background: var(--el-color-danger-light-3); +:deep(.descriptions-label-1) { + /* color: whitesmoke; */ + /* background: var(--el-color-danger-light-3); */ } .descriptions-label-2 { - color: whitesmoke; - background-color: var(--el-color-success-light-3); + /* color: whitesmoke; */ + /* background-color: var(--el-color-success-light-3); */ } </style> -- Gitblit v1.9.3