mirror of
https://github.com/palxiao/poster-design.git
synced 2025-07-15 16:02:19 +08:00
61 lines
1.1 KiB
TypeScript
61 lines
1.1 KiB
TypeScript
/*
|
|
* @Author: ShawnPhang
|
|
* @Date: 2021-07-17 11:20:22
|
|
* @Description:
|
|
* @LastEditors: ShawnPhang <https://m.palxp.cn>, Jeremy Yu <https://github.com/JeremyYu-cn>
|
|
* @LastEditTime: 2024-03-01 20:55:51
|
|
*/
|
|
|
|
export type TWidgetClassifyData = {
|
|
name: string
|
|
icon: string
|
|
show: boolean
|
|
component: string
|
|
}
|
|
|
|
export default [
|
|
{
|
|
name: '模板',
|
|
icon: 'icon-moban',
|
|
show: false,
|
|
component: 'temp-list-wrap',
|
|
},
|
|
{
|
|
name: '素材',
|
|
icon: 'icon-sucai',
|
|
show: false,
|
|
component: 'graph-list-wrap',
|
|
},
|
|
{
|
|
name: '文字',
|
|
icon: 'icon-wenzi',
|
|
show: false,
|
|
style: { fontWeight: 600 },
|
|
component: 'text-list-wrap',
|
|
},
|
|
{
|
|
name: '照片',
|
|
icon: 'icon-gallery',
|
|
show: false,
|
|
component: 'photo-list-wrap',
|
|
},
|
|
// {
|
|
// name: '背景',
|
|
// icon: 'icon-beijing',
|
|
// show: false,
|
|
// component: 'bg-img-list-wrap',
|
|
// },
|
|
{
|
|
name: '工具箱',
|
|
icon: 'icon-zujian01',
|
|
show: false,
|
|
component: 'tools-list-wrap',
|
|
},
|
|
{
|
|
name: '我的',
|
|
icon: 'icon-shangchuan',
|
|
show: false,
|
|
component: 'user-wrap',
|
|
},
|
|
] as TWidgetClassifyData[]
|