2025-12-12 19:16:46 +08:00
|
|
|
import { http } from '@/http/http'
|
|
|
|
|
|
|
|
|
|
/** 字典数据 */
|
|
|
|
|
export interface DictData {
|
|
|
|
|
id?: number
|
|
|
|
|
dictType: string
|
|
|
|
|
label: string
|
|
|
|
|
value: string
|
|
|
|
|
colorType?: string
|
|
|
|
|
cssClass?: string
|
|
|
|
|
sort?: number
|
|
|
|
|
status: number
|
|
|
|
|
remark?: string
|
2025-12-16 23:53:40 +08:00
|
|
|
createTime?: Date
|
2025-12-12 19:16:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 查询字典数据(精简)列表 */
|
|
|
|
|
export function getSimpleDictDataList() {
|
|
|
|
|
return http.get<DictData[]>('/system/dict-data/simple-list')
|
|
|
|
|
}
|