rushe-ui/src/mock/progressData.ts

79 lines
2.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const progressStages = [
{ id: 'prepare', name: '准备阶段', icon: '📋' },
{ id: 'design', name: '方案阶段', icon: '✏️' },
{ id: 'implement', name: '落地阶段', icon: '🔨' },
{ id: 'visit', name: '上门阶段', icon: '🏠' },
{ id: 'deliver', name: '交付阶段', icon: '🎉' },
]
export const progressDetails = {
prepare: {
title: '准备阶段',
status: 'completed',
tasks: [
{ id: 1, title: '需求沟通', status: 'completed', date: '2024-01-15' },
{ id: 2, title: '上门量房', status: 'completed', date: '2024-01-18' },
{ id: 3, title: '方案初稿', status: 'completed', date: '2024-01-22' },
],
tips: '准备阶段已完成,设计师已获取房屋详细信息。',
},
design: {
title: '方案阶段',
status: 'in_progress',
tasks: [
{ id: 1, title: '平面布局', status: 'completed', date: '2024-01-25' },
{ id: 2, title: '效果图设计', status: 'in_progress', date: '2024-01-28' },
{ id: 3, title: '施工图绘制', status: 'pending', date: '' },
{ id: 4, title: '预算报价', status: 'pending', date: '' },
],
tips: '效果图设计中预计3天内完成。',
},
implement: {
title: '落地阶段',
status: 'pending',
tasks: [
{ id: 1, title: '材料采购', status: 'pending', date: '' },
{ id: 2, title: '水电改造', status: 'pending', date: '' },
{ id: 3, title: '泥瓦工程', status: 'pending', date: '' },
{ id: 4, title: '木工工程', status: 'pending', date: '' },
{ id: 5, title: '油漆工程', status: 'pending', date: '' },
],
tips: '等待方案确认后开始施工。',
},
visit: {
title: '上门阶段',
status: 'pending',
tasks: [
{ id: 1, title: '中期验收', status: 'pending', date: '' },
{ id: 2, title: '安装调试', status: 'pending', date: '' },
{ id: 3, title: '软装进场', status: 'pending', date: '' },
],
tips: '等待施工完成后进行上门验收。',
},
deliver: {
title: '交付阶段',
status: 'pending',
tasks: [
{ id: 1, title: '最终验收', status: 'pending', date: '' },
{ id: 2, title: '交付使用', status: 'pending', date: '' },
{ id: 3, title: '售后服务', status: 'pending', date: '' },
],
tips: '等待所有工程完成后交付。',
},
}
export const projectInfo = {
name: '阳光花园3栋1201室',
area: '120㎡',
style: '现代简约',
budget: '15-20万',
startDate: '2024-01-15',
expectedEndDate: '2024-04-15',
designer: {
name: '张设计',
avatar: 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=200',
phone: '138****8888',
},
progress: 35,
}