fix(产品需求、项目需求、工作报告、我的绩效、加班申请): 1、修复搜索区域的下拉框,无法搜索的问题。2、修复工作报告内容溢出的问题。3、修复我的待办 - 待审批,里面的二级tabs没有加权限的问题。4、优化周报里工作日志展示时的分隔符。5、优化项目需求池、我的绩效请求重复发送、影响效率的问题。

feat(我的绩效): 1、增加我的绩效在工作台可以直接处理的功能。2、增加我的绩效全部导出时,合并多个excel的sheet为一个excel的功能。
This commit is contained in:
dk
2026-06-24 18:02:36 +08:00
parent b26a9c8a39
commit 3ffdad142d
16 changed files with 569 additions and 81 deletions

View File

@@ -178,7 +178,12 @@ function handleConfirm() {
<div class="work-report-create-dialog__body">
<div v-if="selectedReportType === 'project'" class="work-report-create-dialog__project-select">
<label class="work-report-create-dialog__label">项目</label>
<ElSelect v-model="selectedProjectId" class="w-full" placeholder="请选择项目" filterable>
<ElSelect
v-model="selectedProjectId"
class="work-report-create-dialog__project-select-control w-full"
placeholder="请选择项目"
filterable
>
<ElOption
v-for="item in props.projectOptions"
:key="item.id"
@@ -367,6 +372,16 @@ function handleConfirm() {
gap: 6px;
}
.work-report-create-dialog__project-select-control :deep(.el-select__wrapper) {
min-height: 46px;
border-radius: 12px;
padding-inline: 14px;
}
.work-report-create-dialog__project-select-control :deep(.el-select__selected-item) {
line-height: 1.4;
}
.work-report-create-dialog__field {
display: grid;
gap: 6px;