v1.5 beta版发布,详细查看发行版说明

This commit is contained in:
郑杰
2019-01-20 19:34:40 +08:00
parent 5bb9c0a156
commit 45655e2bec
37 changed files with 634 additions and 293 deletions

16
src/api/genConfig.js Normal file
View File

@@ -0,0 +1,16 @@
import request from '@/utils/request'
export function get() {
return request({
url: 'api/genConfig',
method: 'get'
})
}
export function update(data) {
return request({
url: 'api/genConfig',
data,
method: 'put'
})
}