Files
2026-08-14 12:41:18 +08:00

21 lines
502 B
TypeScript

import type {ISysFileInfo} from "@/domain/iSysFile.ts";
/** 小程序首页宫格导航 */
export default interface IHomeNav {
id?: number;
name?: string;
image_id?: number;
image?: ISysFileInfo;
image_url?: string;
link?: string;
sort?: number;
status?: number;
created_at?: string;
updated_at?: string;
}
export const HOME_NAV_STATUS_MAP: Record<number, { text: string; color: string }> = {
0: { text: '停用', color: 'error' },
1: { text: '正常', color: 'success' },
};