116 lines
2.9 KiB
TypeScript
116 lines
2.9 KiB
TypeScript
// 大屏项目类型(与 superadmin project-list 一致)
|
|
export interface Project {
|
|
id: string
|
|
name: string
|
|
description: string
|
|
status: string
|
|
createdAt: string
|
|
updatedAt: string
|
|
stats: { stallCount: number; userCount: number; dailyRevenue: number; growthRate: number }
|
|
config: { title: string; mapCenter: [number, number]; mapZoom: number; theme: string }
|
|
}
|
|
|
|
// 模拟项目数据
|
|
export const mockProjects: Project[] = [
|
|
{
|
|
id: "1",
|
|
name: "厦门地摊经济数字化中台",
|
|
description: "厦门市地摊经济数字化运营管理平台",
|
|
status: "active",
|
|
createdAt: "2023-06-15T08:30:00.000Z",
|
|
updatedAt: "2023-06-20T10:15:00.000Z",
|
|
stats: {
|
|
stallCount: 2011,
|
|
userCount: 308000,
|
|
dailyRevenue: 1850000,
|
|
growthRate: 28.5,
|
|
},
|
|
config: {
|
|
title: "地摊经济数字化中台",
|
|
mapCenter: [24.55, 118.15],
|
|
mapZoom: 11,
|
|
theme: "blue",
|
|
},
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "福州美食街数字化平台",
|
|
description: "福州市美食街区数字化管理系统",
|
|
status: "active",
|
|
createdAt: "2023-07-10T09:20:00.000Z",
|
|
updatedAt: "2023-07-18T14:30:00.000Z",
|
|
stats: {
|
|
stallCount: 1580,
|
|
userCount: 245000,
|
|
dailyRevenue: 1420000,
|
|
growthRate: 22.3,
|
|
},
|
|
config: {
|
|
title: "福州美食街数字化平台",
|
|
mapCenter: [26.08, 119.3],
|
|
mapZoom: 12,
|
|
theme: "red",
|
|
},
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "泉州夜市管理系统",
|
|
description: "泉州市夜市摊位管理数字化平台",
|
|
status: "active",
|
|
createdAt: "2023-08-05T11:45:00.000Z",
|
|
updatedAt: "2023-08-15T16:20:00.000Z",
|
|
stats: {
|
|
stallCount: 1320,
|
|
userCount: 198000,
|
|
dailyRevenue: 980000,
|
|
growthRate: 18.7,
|
|
},
|
|
config: {
|
|
title: "泉州夜市管理系统",
|
|
mapCenter: [24.87, 118.68],
|
|
mapZoom: 12,
|
|
theme: "purple",
|
|
},
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "漳州小吃街数据平台",
|
|
description: "漳州市小吃街区数据分析平台",
|
|
status: "draft",
|
|
createdAt: "2023-09-01T10:00:00.000Z",
|
|
updatedAt: "2023-09-01T10:00:00.000Z",
|
|
stats: {
|
|
stallCount: 850,
|
|
userCount: 120000,
|
|
dailyRevenue: 650000,
|
|
growthRate: 15.2,
|
|
},
|
|
config: {
|
|
title: "漳州小吃街数据平台",
|
|
mapCenter: [24.51, 117.65],
|
|
mapZoom: 12,
|
|
theme: "green",
|
|
},
|
|
},
|
|
{
|
|
id: "5",
|
|
name: "龙岩农贸市场监控",
|
|
description: "龙岩市农贸市场数字化监控系统",
|
|
status: "archived",
|
|
createdAt: "2023-05-20T09:15:00.000Z",
|
|
updatedAt: "2023-06-10T11:30:00.000Z",
|
|
stats: {
|
|
stallCount: 720,
|
|
userCount: 95000,
|
|
dailyRevenue: 520000,
|
|
growthRate: 12.8,
|
|
},
|
|
config: {
|
|
title: "龙岩农贸市场监控",
|
|
mapCenter: [25.08, 117.02],
|
|
mapZoom: 11,
|
|
theme: "orange",
|
|
},
|
|
},
|
|
]
|