mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-08 13:16:41 +08:00
15 lines
255 B
JavaScript
15 lines
255 B
JavaScript
/*
|
|
* @Description:地区类型
|
|
* @Author: zhuoda
|
|
* @Date: 2021-08-18
|
|
* @LastEditTime: 2021-08-18
|
|
* @LastEditors: zhuoda
|
|
*/
|
|
|
|
export interface SmartAreaOption {
|
|
value: number;
|
|
label: string;
|
|
disabled?: boolean;
|
|
children?: SmartAreaOption[];
|
|
}
|