import { dictionaryDeleteAll } from "@/api/path/dict.js"; import { ref } from "vue"; // 获取字典 export function Getdictionary(params) { // 返回 Promise return dictionaryDeleteAll({ typeKey: params }).then((res) => { return res.data; // 将响应数据返回 }); }