From c1a3186cdd69d21166ce188ff0a058336a9671c0 Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期五, 23 五月 2025 17:13:49 +0800 Subject: [PATCH] 化验师OA页面修改 --- laboratory/src/views/dataManagement/approvalPlan/list.vue | 78 +++++++++++++++++++++++---------------- 1 files changed, 46 insertions(+), 32 deletions(-) diff --git a/laboratory/src/views/dataManagement/approvalPlan/list.vue b/laboratory/src/views/dataManagement/approvalPlan/list.vue index 994dc10..f215622 100644 --- a/laboratory/src/views/dataManagement/approvalPlan/list.vue +++ b/laboratory/src/views/dataManagement/approvalPlan/list.vue @@ -26,12 +26,12 @@ </el-form> </template> <template #setting> - <div class="tableTitle"> + <div class="table-setting"> <div class="flex a-center"> - <div class="title" :class="{ active: currentType === 'list' }" @click="handleTypeChange('list')"> + <div class="table-title" :class="{ active: currentType === 'list' }" @click="handleTypeChange('list')"> 项目课题方案列表 </div> - <div v-if="isProcessEngineer" class="drafts" :class="{ active: currentType === 'draft' }" + <div v-if="isProcessEngineer" class="table-tit drafts" :class="{ active: currentType === 'draft' }" @click="handleTypeChange('draft')"> 草稿箱 </div> @@ -359,41 +359,55 @@ align-items: center; } -.tableTitle { +.table-setting { display: flex; padding-bottom: 20px; justify-content: space-between; align-items: center; +} - .title { - background: #fafafc; - border-radius: 8px 8px 0px 0px; - border: 1px solid #dcdfe6; - padding: 16px 29px; - font-weight: bold; - font-size: 18px; - color: #606266; - width: unset; - cursor: pointer; - } +.table-title { + width: 220px; + height: 50px; + background: #ffffff; + border-radius: 8px 8px 0px 0px; + border: 1px solid #049c9a; + display: flex; + align-items: center; + justify-content: center; + font-family: SourceHanSansCN, SourceHanSansCN; + font-weight: bold; + font-size: 18px; + color: #049c9a; + line-height: 27px; + cursor: pointer; +} - .drafts { - padding: 16px 65px; - background: #fafafc; - border-radius: 8px 8px 0px 0px; - border: 1px solid #dcdfe6; - font-weight: 400; - font-size: 18px; - color: #606266; - margin-left: 16px; - cursor: pointer; - } +.table-tit { + width: 166px; + height: 50px; + background: #fafafc; + border-radius: 8px 8px 0px 0px; + border: 1px solid #dcdfe6; + display: flex; + align-items: center; + justify-content: center; + font-family: SourceHanSansCN, SourceHanSansCN; + font-weight: bold; + font-size: 18px; + color: #606266; + line-height: 27px; + margin-left: 16px; + cursor: pointer; +} - .active { - color: #049c9a; - background: #ffffff; - border-radius: 8px 8px 0px 0px; - border: 1px solid #049c9a; - } +.active { + color: #049c9a; + background: #ffffff; + border: 1px solid #049c9a; +} + +.el-icon-plus { + margin-bottom: 20px; } </style> \ No newline at end of file -- Gitblit v1.7.1