1
2
3
4
5
6
7
8
9
10
11
12
13
14
| import type { MesProTaskApi } from '#/api/mes/pro/task';
|
| /** 工作台 Tab 页键 */
| export type WorkbenchTabKey = 'detail' | 'feedback' | 'history' | 'record-param' | 'product-issue' | 'return-issue';
|
| /** 工作台 Tab 项 */
| export interface WorkbenchTabItem {
| key: WorkbenchTabKey;
| label: string;
| icon: string;
| }
|
| /** 待报工任务(从 API 类型重导出,便于组件引用) */
| export type PendingTask = MesProTaskApi.PendingFeedbackTask;
|
|