|
|
@@ -132,12 +132,7 @@ const nextPlanBaseDetailCardFields: DetailCardField[] = [
|
|
|
{ label: '重点工作事项', prop: 'priorityTasks' }
|
|
|
]
|
|
|
|
|
|
-const meetingTableBlueColumns = new Set<keyof DetailItem>([
|
|
|
- 'projectName',
|
|
|
- 'keyWorkCompletion',
|
|
|
- 'problemsAnalysis',
|
|
|
- 'qhse'
|
|
|
-])
|
|
|
+const meetingTableBlueColumns = new Set<keyof DetailItem>(['keyWorkCompletion', 'problemsAnalysis'])
|
|
|
|
|
|
const isSummaryMode = computed(() => props.mode === 'summary')
|
|
|
const canEditDetails = computed(() => !isSummaryMode.value && props.type !== 'view')
|
|
|
@@ -705,7 +700,7 @@ const getMeetingTableCellStyle: any = ({
|
|
|
return { color: '#1b71f6' }
|
|
|
}
|
|
|
|
|
|
- return undefined
|
|
|
+ return property ? { color: '#000' } : undefined
|
|
|
}
|
|
|
|
|
|
const getMeetingTableRowStyle = (): CSSProperties => ({
|
|
|
@@ -1526,7 +1521,7 @@ const getMeetingTableCellClassName = ({ column }: MeetingTableCellStyleProps) =>
|
|
|
--zm-table-header-font-size: 18px;
|
|
|
--zm-table-header-font-weight: 800;
|
|
|
--zm-table-row-font-weight: 800;
|
|
|
- --zm-table-header-text-color: #333;
|
|
|
+ --zm-table-header-text-color: #fff;
|
|
|
--zm-table-border-color: #cbd5e1;
|
|
|
--zm-table-radius: 0;
|
|
|
--zm-table-header-border-color: #c2ccda;
|
|
|
@@ -1557,6 +1552,19 @@ const getMeetingTableCellClassName = ({ column }: MeetingTableCellStyleProps) =>
|
|
|
background: #fff;
|
|
|
}
|
|
|
|
|
|
+ :deep(.el-table__header .el-table__cell),
|
|
|
+ :deep(.el-table__fixed-header-wrapper .el-table__cell) {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #0447ad !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-table__header .cell),
|
|
|
+ :deep(.el-table__fixed-header-wrapper .cell),
|
|
|
+ :deep(.el-table__header .header-wrapper),
|
|
|
+ :deep(.el-table__fixed-header-wrapper .header-wrapper) {
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+
|
|
|
:deep(.header-wrapper) {
|
|
|
height: 20px;
|
|
|
justify-content: center !important;
|