疯狂的狮子li
2022-09-02 0e39f6fa2d67de9d956f3e043f68b7bd7a030db2
ruoyi-ui/src/api/system/config.js
@@ -43,6 +43,18 @@
  })
}
// 修改参数配置
export function updateConfigByKey(key, value) {
  return request({
    url: '/system/config/updateByKey',
    method: 'put',
    data: {
      configKey: key,
      configValue: value
    }
  })
}
// 删除参数配置
export function delConfig(configId) {
  return request({
@@ -59,11 +71,3 @@
  })
}
// 导出参数
export function exportConfig(query) {
  return request({
    url: '/system/config/export',
    method: 'get',
    params: query
  })
}