|
@@ -103,6 +103,7 @@ const useStatisticsFilter = () => {
|
|
const TwoRowSpan8 = defineColumn(_, 'row-2', { span: 8 })
|
|
const TwoRowSpan8 = defineColumn(_, 'row-2', { span: 8 })
|
|
const TwoRowSpan3 = defineColumn(_, 'row-2', { span: 3 })
|
|
const TwoRowSpan3 = defineColumn(_, 'row-2', { span: 3 })
|
|
const TwoRowSpan4 = defineColumn(_, 'row-2', { span: 4 })
|
|
const TwoRowSpan4 = defineColumn(_, 'row-2', { span: 4 })
|
|
|
|
+ const TwoRowSpan2 = defineColumn(_, 'row-2', { span: 1.3 })
|
|
|
|
|
|
const items = computed<EpFormItem[]>(() => [
|
|
const items = computed<EpFormItem[]>(() => [
|
|
OneRowSpan4({
|
|
OneRowSpan4({
|
|
@@ -197,20 +198,22 @@ const useStatisticsFilter = () => {
|
|
],
|
|
],
|
|
},
|
|
},
|
|
}),
|
|
}),
|
|
- TwoRowSpan3({
|
|
|
|
|
|
+ TwoRowSpan2({
|
|
prop: 'expand',
|
|
prop: 'expand',
|
|
- label: '展开明细',
|
|
|
|
|
|
+ label: '',
|
|
slotType: 'checkbox',
|
|
slotType: 'checkbox',
|
|
|
|
+ labelWidth: '15px',
|
|
slot: {
|
|
slot: {
|
|
options: [{ label: '按人员展开' }],
|
|
options: [{ label: '按人员展开' }],
|
|
},
|
|
},
|
|
}),
|
|
}),
|
|
TwoRowSpan3({
|
|
TwoRowSpan3({
|
|
prop: 'hasGroupLeaderScore',
|
|
prop: 'hasGroupLeaderScore',
|
|
- label: '组长给分',
|
|
|
|
|
|
+ label: '',
|
|
slotType: 'checkbox',
|
|
slotType: 'checkbox',
|
|
|
|
+ labelWidth: '40px',
|
|
slot: {
|
|
slot: {
|
|
- options: [{ label: 'true', slotLabel: '包含' }],
|
|
|
|
|
|
+ options: [{ label: 'true', slotLabel: '包含组长给分' }],
|
|
},
|
|
},
|
|
}),
|
|
}),
|
|
])
|
|
])
|