feat: 新增菜单图标, 搜索组件

This commit is contained in:
wenhua
2023-11-10 14:31:25 +08:00
parent 2eeaf31cf4
commit ff24a5cec9
52 changed files with 11561 additions and 34 deletions

5
src/utils/tool.ts Normal file
View File

@@ -0,0 +1,5 @@
import moment from 'moment'
export function formatDate(date: Date, format='YYYY-MM-DD HH:mm:ss'): string {
return moment(date).format(format)
}