/** * 系统参数配置接口 */ import { request } from '@/utils/request' /** * 根据参数键名查询参数值 */ export const getConfigKey = (configKey: string): Promise => { return request({ url: '/system/config/configKey/' + configKey, method: 'GET' }) } /** * 获取服务器android版本 */ export const getVersion = (): Promise => { return request({ url: '/system/config/getVersion', method: 'GET', header: { isToken: false, repeatSubmit: false } }) }