智能任务管理系统
AI辅助规划 + 高效任务管理
DeepSeek API 设置
保存密钥
提示:请访问
DeepSeek平台
获取API密钥
AI任务规划助手
AI生成计划
{% set total_tasks = tasks|length if tasks else 0 %} {% set completed_tasks = tasks|selectattr('completed')|list|length if tasks else 0 %} {% set pending_tasks = total_tasks - completed_tasks %}
总任务数
{{ total_tasks }}
已完成
{{ completed_tasks }}
进行中
{{ pending_tasks }}
添加新任务
开始时间
结束时间
高优先级
中优先级
低优先级
工作
学习
生活
健康
其他
添加任务
任务列表
{% if tasks %}
{% for task in tasks %}
{{ task.title }} {% if task.completed %}
已完成
{% endif %}
{% if task.start_time %} {{ task.start_time[:16] }} {% if task.end_time %} - {{ task.end_time[11:16] }}{% endif %} {% endif %}
{% if task.priority == 1 %}高优先级{% elif task.priority == 2 %}中优先级{% else %}低优先级{% endif %}
{{ task.description }}
{{ task.category }}
{% if task.completed %}
{% else %}
{% endif %}
{% endfor %}
{% else %}
暂无任务,请添加新任务或使用AI规划助手生成任务
{% endif %}
编辑任务
任务标题
任务描述
开始时间
结束时间
优先级
高优先级
中优先级
低优先级
类别
工作
学习
生活
健康
其他
任务已完成