From 5ec8805b2728d9b98383f2b2cdb3298ac3864286 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期一, 11 八月 2025 17:46:12 +0800 Subject: [PATCH] feat: 接口 --- types/api.d.ts | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/types/api.d.ts b/types/api.d.ts index 5c800b8..5771ec0 100644 --- a/types/api.d.ts +++ b/types/api.d.ts @@ -13,4 +13,19 @@ mock?: boolean; customErrorHandler?: (error: any) => boolean; } + + interface AreaTreeNode { + children?: AreaTreeNode[]; + /** 缂栫爜 */ + areaCode?: string; + /** 鐖剁骇缂栫爜 */ + parentCode?: string; + /** 鍚嶇О */ + areaName?: string; + /** 1鐪� 2甯� 3鍖� 4闀� */ + layer?: number; + /** 鎺掑簭 */ + sort?: number; + id?: string + } } -- Gitblit v1.9.1