20200528-zlp-1

1已完善培训管理功能
2新增多级字典管理功能
This commit is contained in:
paidaxing444
2020-05-28 18:12:06 +08:00
parent 131a235d2e
commit 574601fdca
2 changed files with 414 additions and 0 deletions

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询多级字典管理列表
export function listMoedata(query) {
return request({
url: '/system/moedata/list',
method: 'get',
params: query
})
}
// 查询多级字典管理详细
export function getMoedata(id) {
return request({
url: '/system/moedata/' + id,
method: 'get'
})
}
// 新增多级字典管理
export function addMoedata(data) {
return request({
url: '/system/moedata',
method: 'post',
data: data
})
}
// 修改多级字典管理
export function updateMoedata(data) {
return request({
url: '/system/moedata',
method: 'put',
data: data
})
}
// 删除多级字典管理
export function delMoedata(id) {
return request({
url: '/system/moedata/' + id,
method: 'delete'
})
}