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