import http from '../http' // 获取字典 export function getDictList(type) { return http.get('/system/dict-data/queryByDictType?dictType=' + type) } export async function getDict(type) { let data =[] await getDictList(type).then((res) => { if (res.code == 0) { data = res.data.map(item=>{ return { label:item.label, value:item.value, } }) } else {} }).catch((err) => {}) return data }