luohairen
2024-11-08 cce9b105726750f1b76eef2fa250680ebf36d06c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import axios from './request'
 
// 获取系统配
export const getSysConfig = () => {
  return axios({
    url: '/api/sys-config',
    method: 'GET'
  })
}
 
// 修改系统配置表
export const editSysConfig = (params) => {
  return axios({
    url: '/api/sys-config/',
    method: 'PUT',
    data: params
  })
}