25 lines
516 B
TypeScript
25 lines
516 B
TypeScript
import { v4 as uuidv4 } from 'uuid'
|
|
|
|
export interface taskCenterItem {
|
|
title: string
|
|
desc: string,
|
|
id: string,
|
|
icon: string,
|
|
type?: 'channel'
|
|
}
|
|
|
|
export const taskCenterList: taskCenterItem[] = [
|
|
{
|
|
title: '一键打开各渠道',
|
|
desc: '人工账号登录,为自动化操作做好准备',
|
|
id: uuidv4(),
|
|
icon: '渠',
|
|
type: 'channel'
|
|
},
|
|
{
|
|
title: '渠道房型',
|
|
desc: '销售渠道下的指定房型,管理开关房型',
|
|
id: uuidv4(),
|
|
icon: '房'
|
|
},
|
|
] |