guyu/common/server/config.js
2025-07-22 23:01:06 +08:00

9 lines
171 B
JavaScript

import request from '@/common/system/request';
export const getConfig = async () => {
let res = await request.get('Common/GetConfigV3', {});
return res.data;
}