77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
||
|
||
import { useUserStore } from '@vben/stores';
|
||
import { beginOfDay, endOfDay, formatDateTime, handleTree } from '@vben/utils';
|
||
|
||
import { getSimpleDeptList } from '#/api/system/dept';
|
||
import { getSimpleUserList } from '#/api/system/user';
|
||
import { getRangePickerDefaultProps } from '#/utils';
|
||
|
||
const userStore = useUserStore();
|
||
|
||
export const customerSummaryTabs = [
|
||
{
|
||
tab: '员工合同数量统计',
|
||
key: 'ContractCountPerformance',
|
||
},
|
||
{
|
||
tab: '员工合同金额统计',
|
||
key: 'ContractPricePerformance',
|
||
},
|
||
{
|
||
tab: '员工回款金额统计',
|
||
key: 'ReceivablePricePerformance',
|
||
},
|
||
];
|
||
|
||
/** 列表的搜索表单 */
|
||
export function useGridFormSchema(): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
fieldName: 'times',
|
||
label: '时间范围',
|
||
component: 'RangePicker',
|
||
// TODO @AI:这里有问题,只选择年份
|
||
componentProps: {
|
||
...getRangePickerDefaultProps(),
|
||
presets: {},
|
||
picker: 'year',
|
||
showTime: false,
|
||
format: 'YYYY',
|
||
},
|
||
defaultValue: [
|
||
formatDateTime(beginOfDay(new Date(new Date().getFullYear(), 0, 1))),
|
||
formatDateTime(endOfDay(new Date(new Date().getFullYear(), 11, 31))),
|
||
],
|
||
},
|
||
{
|
||
fieldName: 'deptId',
|
||
label: '归属部门',
|
||
component: 'ApiTreeSelect',
|
||
componentProps: {
|
||
api: async () => {
|
||
const data = await getSimpleDeptList();
|
||
return handleTree(data);
|
||
},
|
||
labelField: 'name',
|
||
valueField: 'id',
|
||
childrenField: 'children',
|
||
treeDefaultExpandAll: true,
|
||
},
|
||
defaultValue: userStore.userInfo?.deptId,
|
||
},
|
||
{
|
||
fieldName: 'userId',
|
||
label: '员工',
|
||
component: 'ApiSelect',
|
||
componentProps: {
|
||
api: getSimpleUserList,
|
||
labelField: 'nickname',
|
||
valueField: 'id',
|
||
placeholder: '请选择员工',
|
||
allowClear: true,
|
||
},
|
||
},
|
||
];
|
||
}
|