1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import request from '@/utils/request'
|
| // 查询项目管理全局配置
| export function getConfig() {
| return request({
| url: '/projectManagement/config',
| method: 'get'
| })
| }
|
| // 更新项目管理全局配置
| export function updateConfig(data) {
| return request({
| url: '/projectManagement/config',
| method: 'put',
| data: data
| })
| }
|
|