/* * @Author: 曹文丽 caowenli@yuan-info.com * @Date: 2023-03-02 19:38:30 * @LastEditors: 曹文丽 caowenli@yuan-info.com * @LastEditTime: 2023-04-28 10:52:36 * @FilePath: \yuan-huoling-browser\src\api\system\globalConfig.ts * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE */ // 全局配置 需要黏贴 import { http } from "@/utils/https"; //获取扫描模式配置 export const getGlobalConfig = () => { return http.get("/globalConfig/query"); }; //扫描模式配置修改 export const modifyGlobalConfig = (data) => { return http.post("/globalConfig/modify", data); };