任务、消息

This commit is contained in:
liu
2026-07-01 22:16:15 +08:00
parent 137db25b49
commit d98457e1dd
22 changed files with 1504 additions and 63 deletions
+133
View File
@@ -0,0 +1,133 @@
import type { Task } from '@/types/task'
export const tasks: Task[] = [
// === 快递代取 ===
{
id: 't1',
type: 'express',
title: '帮我取个快递,菜鸟驿站3号柜',
desc: '中通快递,小件包裹,就在南区菜鸟驿站3号柜,取件码已发你',
reward: '¥5.00',
location: '南区菜鸟驿站',
time: '10分钟前',
status: 'open',
publisher: { name: '李同学', avatar: 'https://picsum.photos/seed/u1/100/100' },
deadline: '今天 18:00 前',
},
{
id: 't2',
type: 'express',
title: '顺丰快递代取,北门快递点',
desc: '顺丰快递一个,较大件(鞋盒大小),北门快递柜,需今天内取',
reward: '¥8.00',
location: '北门快递柜',
time: '25分钟前',
status: 'open',
publisher: { name: '王同学', avatar: 'https://picsum.photos/seed/u2/100/100' },
deadline: '今天 20:00 前',
},
// === 二手交易 ===
{
id: 't3',
type: 'secondhand',
title: '出手99新 iPad Air 5,带Apple Pencil',
desc: '去年购入,使用不到半年,无拆无修,电池健康度95%,256G深空灰',
reward: '¥3200',
location: '东区宿舍',
time: '1小时前',
status: 'open',
publisher: { name: '赵同学', avatar: 'https://picsum.photos/seed/u3/100/100' },
images: [
'https://picsum.photos/seed/ipad1/200/200',
'https://picsum.photos/seed/ipad2/200/200',
],
tags: ['数码', '99新', '在保'],
},
{
id: 't4',
type: 'secondhand',
title: '二手教材出售:高等数学+线性代数',
desc: '大一教材,几乎全新,笔记很少,两本一起出',
reward: '¥30',
location: '西区图书馆',
time: '3小时前',
status: 'open',
publisher: { name: '陈同学', avatar: 'https://picsum.photos/seed/u4/100/100' },
images: ['https://picsum.photos/seed/book/200/200'],
tags: ['教材', '大一'],
},
// === 求助信息 ===
{
id: 't5',
type: 'help',
title: '找一位计算机学院的同学帮忙辅导数据结构',
desc: '期末考试在即,希望找一位数据结构学得好的同学辅导,2小时左右,奶茶酬谢',
reward: '¥50/次',
location: '图书馆自习室',
time: '2小时前',
status: 'open',
publisher: { name: '刘同学', avatar: 'https://picsum.photos/seed/u5/100/100' },
tags: ['学习辅导', '数据结构'],
},
{
id: 't6',
type: 'help',
title: '帮忙搬宿舍,男生,从南区搬到北区',
desc: '暑假宿舍调整,需要搬运行李,东西不多,大概1小时能搞定',
reward: '¥30',
location: '南→北宿舍区',
time: '1小时前',
status: 'progress',
publisher: { name: '周同学', avatar: 'https://picsum.photos/seed/u6/100/100' },
tags: ['搬运', '急'],
},
// === 校园活动 ===
{
id: 't7',
type: 'activity',
title: '周末桌游局,缺2人,狼人杀/阿瓦隆',
desc: '周六下午2点,学校咖啡厅,已有8人,再找2个小伙伴一起玩',
reward: '免费',
location: '校内咖啡厅',
time: '3小时前',
status: 'open',
publisher: { name: '吴同学', avatar: 'https://picsum.photos/seed/u7/100/100' },
participants: 8,
maxParticipants: 10,
tags: ['桌游', '周末', '社交'],
},
{
id: 't8',
type: 'activity',
title: '校园夜跑团招新,每周二四六晚8点',
desc: '欢迎喜欢跑步的同学加入,各种配速都有,一起锻炼身体',
reward: '免费',
location: '田径场',
time: '5小时前',
status: 'open',
publisher: { name: '跑步社团', avatar: 'https://picsum.photos/seed/u8/100/100' },
participants: 35,
maxParticipants: 100,
tags: ['运动', '跑步', '社团'],
},
// === 拼车出行 ===
{
id: 't9',
type: 'carpool',
title: '周五下午去市中心,有车,还有3个空位',
desc: '周五下午4点出发,可以到市中心任意地点,有车的同学顺路带人',
reward: '¥15/人',
location: '学校南门出发',
time: '30分钟前',
status: 'open',
publisher: { name: '郑同学', avatar: 'https://picsum.photos/seed/u9/100/100' },
deadline: '周五 16:00',
participants: 1,
maxParticipants: 4,
tags: ['拼车', '周五', '市中心'],
},
]