import { request } from '@/plugins/http-fetch'; /** * 服务器时间 * @returns object */ export async function getServerTime() { return request({ url: `/time`, method: 'GET', whithToken: false, }); } /** * 获取系统暴露的配置信息 * @returns object */ export function getSysConf() { return request({ url: `/sys-conf`, method: 'GET', whithToken: false, }); }