30 lines
2.3 KiB
JavaScript
30 lines
2.3 KiB
JavaScript
|
|
// 预置养护图标 - 模拟从后端加载
|
|
export const CARE_TASK_ICONS = [
|
|
{ id: 'water', name: '浇水', icon: 'rain-medium', color: '#2196F3', bgColor: '#E3F2FD', targetAction: 'ACT_WATER' },
|
|
{ id: 'fertilize', name: '施肥', icon: 'gift', color: '#8BC34A', bgColor: '#F1F8E9', targetAction: 'ACT_FERTILIZE' },
|
|
{ id: 'prune', name: '修剪', icon: 'cut', color: '#FF9800', bgColor: '#FFF3E0', targetAction: 'ACT_PRUNE' },
|
|
{ id: 'repot', name: '换盆', icon: 'home', color: '#9C27B0', bgColor: '#F3E5F5', targetAction: 'ACT_REPOT' },
|
|
{ id: 'resoil', name: '换土', icon: 'load', color: '#757575', bgColor: '#F5F5F5', targetAction: 'ACT_RESOIL' },
|
|
{ id: 'rotate', name: '转盆', icon: 'refresh', color: '#00BCD4', bgColor: '#E0F7FA', targetAction: 'ACT_ROTATE' },
|
|
{ id: 'spray', name: '喷雾', icon: 'cloud', color: '#03A9F4', bgColor: '#E1F5FE', targetAction: 'ACT_SPRAY' },
|
|
{ id: 'check', name: '检查', icon: 'search', color: '#4CAF50', bgColor: '#E8F5E9', targetAction: 'ACT_CHECK' },
|
|
{ id: 'sun', name: '晒太阳', icon: 'sunny', color: '#FFC107', bgColor: '#FFFDE7', targetAction: 'ACT_SUN' },
|
|
{ id: 'move', name: '挪位置', icon: 'location', color: '#E91E63', bgColor: '#FCE4EC', targetAction: 'ACT_MOVE' },
|
|
{ id: 'medicine', name: '用药', icon: 'heart', color: '#F44336', bgColor: '#FFEBEE', targetAction: 'ACT_MEDICINE' },
|
|
{ id: 'other', name: '其他', icon: 'ellipsis', color: '#607D8B', bgColor: '#ECEFF1', targetAction: 'ACT_OTHER' },
|
|
];
|
|
|
|
export const MOCK_BADGES = [
|
|
{ id: 'b1', name: '初级园丁', desc: '累计种植 1 棵植物', icon: 'medal', color: '#4CAF50', unlocked: true },
|
|
{ id: 'b2', name: '植物达人', desc: '累计种植 10 棵植物', icon: 'crown', color: '#FFD700', unlocked: true, progress: '12/10' },
|
|
{ id: 'b3', name: '浇水冠军', desc: '完成 100 次浇水任务', icon: 'zap', color: '#2196F3', unlocked: true, progress: '156/100' },
|
|
{ id: 'b4', name: '全勤奖', desc: '连续 30 天打卡', icon: 'shield', color: '#9C27B0', unlocked: false, progress: '12/30' },
|
|
{ id: 'b5', name: '博学家', desc: '阅读 20 篇植物百科', icon: 'book-open', color: '#FF5722', unlocked: false, progress: '8/20' },
|
|
{ id: 'b6', name: '社交之星', desc: '获得 50 个赞', icon: 'heart', color: '#E91E63', unlocked: false, progress: '42/50' },
|
|
];
|
|
|
|
|
|
|
|
|