import { getDicts } from "@/api/system/dict" const dict = { actions: { // 数据字典数据 getDictList({}, data) { return new Promise((resolve, reject) => { getDicts(data) .then(res => { resolve(res) }) .catch(error => { reject(error) }) }) } } } export default dict