添加产值汇总表专业所排序
This commit is contained in:
@@ -45,6 +45,7 @@
|
|||||||
{{ scope.row.totalRow ? '' : scope.row.serialNo }}
|
{{ scope.row.totalRow ? '' : scope.row.serialNo }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column align="center" fixed="left" label="专业所" min-width="140" prop="officeName" />
|
||||||
<el-table-column align="center" fixed="left" label="姓名" min-width="120" prop="employeeName" />
|
<el-table-column align="center" fixed="left" label="姓名" min-width="120" prop="employeeName" />
|
||||||
<el-table-column align="center" label="第一季度" min-width="110">
|
<el-table-column align="center" label="第一季度" min-width="110">
|
||||||
<template #default="scope">{{ formatAmount(scope.row.quarterOneAmount) }}</template>
|
<template #default="scope">{{ formatAmount(scope.row.quarterOneAmount) }}</template>
|
||||||
@@ -309,9 +310,9 @@ const PROJECT_OVERVIEW_SORT_OPTIONS: SelectOption[] = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
const EMPLOYEE_SUMMARY_SORT_OPTIONS: SelectOption[] = [
|
const EMPLOYEE_SUMMARY_SORT_OPTIONS: SelectOption[] = [
|
||||||
{ label: '年度合计从高到低', value: 'annual_total_desc' },
|
{ label: '专业所 + 所内年度合计从高到低', value: 'annual_total_desc' },
|
||||||
{ label: '年度合计从低到高', value: 'annual_total_asc' },
|
{ label: '专业所 + 所内年度合计从低到高', value: 'annual_total_asc' },
|
||||||
{ label: '员工姓名升序', value: 'name_asc' }
|
{ label: '专业所 + 所内姓名升序', value: 'name_asc' }
|
||||||
]
|
]
|
||||||
|
|
||||||
const message = useMessage()
|
const message = useMessage()
|
||||||
|
|||||||
Reference in New Issue
Block a user