This commit is contained in:
sjl
2024-11-05 11:23:38 +08:00
parent c0fcba6a25
commit 7f8aeebb1e
6 changed files with 148 additions and 71 deletions

View File

@@ -1,3 +1,4 @@
import { storeToRefs } from 'pinia';
/**
* 该接口声明文件用来声明通用的接口定义,比如 请求参数Base、响应Base、分页等
*/
@@ -44,8 +45,11 @@ export interface ResPage<T> {
*/
export interface Dict {
id: string;
label: string;
name: string;
code: string;
value?: string;
sort?:number;
algoDescribe?: string;
children?: Dict[];
}