index.js 281 B

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