【Zorro】【Dayjs】日期组件设置默认为当月第一天
dayjs().startOf(‘month’).toDate()
ngOnInit() {
this.form = this.fb.group({
fundCode: [[], []], // 组合名称
createdDateBegin: [dayjs().startOf('month').toDate()], // 日期开始
createdDateEnd: [new Date()] // 日期结束
});
this.getTableData();
}