config.uts 296 B

1234567891011121314
  1. /**
  2. * 系统参数配置接口
  3. */
  4. import { request } from '@/utils/request'
  5. /**
  6. * 根据参数键名查询参数值
  7. */
  8. export const getConfigKey = (configKey: string): Promise<any> => {
  9. return request({
  10. url: '/system/config/configKey/' + configKey,
  11. method: 'GET'
  12. })
  13. }