feature: task dash

This commit is contained in:
zhuyu 2025-05-21 17:18:19 +08:00
parent 2bc5b6c88a
commit 371703296c
2 changed files with 22 additions and 0 deletions

View File

@ -105,7 +105,15 @@ class Dashboard extends Backend
return $this->view->fetch(); return $this->view->fetch();
} }
public function task()
{
$a = [];
$this->assignconfig('a', $a);
return $this->view->fetch();
}
} }

View File

@ -0,0 +1,14 @@
<style>
</style>
<div class="row">
<div class="col">
每日任务
</div>
<div class="col">
每周任务
</div>
<div class="col">
每月任务
</div>
</div>