// 全局配置 需要黏贴 import { http } from "@/utils/https"; //获取扫描模式配置 export const getGlobalConfig = () => { return http.get("/globalConfig/query"); }; //扫描模式配置修改 export const modifyGlobalConfig = (data) => { return http.post("/globalConfig/modify", data); };