feat(web): update views

- AppShellRouteView.vue: update app shell route view
- AuditView.vue: update audit view
- EmployeeManagementView.vue: update employee management view
- PoliciesView.vue: update policies view
- RequestsView.vue: update requests view
- TravelReimbursementCreateView.vue: update travel form view
- TravelRequestDetailView.vue: update travel detail view
This commit is contained in:
caoxiaozhu
2026-05-13 03:33:11 +00:00
parent 473198c669
commit 8b72f4e962
7 changed files with 456 additions and 398 deletions

View File

@@ -547,6 +547,22 @@
</footer>
</article>
</Transition>
<ConfirmDialog
:open="disableDialogOpen"
badge="停用账号"
badge-tone="warning"
:title="`确认停用 ${selectedEmployee?.name || '该员工'} 的账号吗?`"
description="停用后该员工将无法继续登录系统,相关个人操作入口也会立即失效。"
cancel-text="取消"
confirm-text="确认停用"
busy-text="停用中..."
confirm-tone="danger"
confirm-icon="mdi mdi-account-cancel-outline"
:busy="actionState === 'disable'"
@close="closeDisableDialog"
@confirm="confirmDisableEmployeeAccount"
/>
</section>
</template>