feat: complete leave approval MVP

This commit is contained in:
selfrelease
2026-07-18 19:20:07 +08:00
parent 2105fe3bac
commit 090a7e33ce
133 changed files with 7845 additions and 100 deletions
@@ -53,6 +53,21 @@ class WorkspacePage extends StatelessWidget {
),
),
),
const SizedBox(height: 10),
Card(
child: ListTile(
onTap: () => context.push('/leave'),
leading: const CircleAvatar(
child: Icon(Icons.description_outlined),
),
title: const Text(
'我的请假申请',
style: TextStyle(fontWeight: FontWeight.w700),
),
subtitle: const Text('查看草稿、审批状态、时间线和撤回申请'),
trailing: const Icon(Icons.chevron_right),
),
),
const SizedBox(height: 16),
const _StatusCard(),
],