You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
720 B
40 lines
720 B
|
3 years ago
|
import request from '@/router/axios';
|
||
|
|
const prefix = '/api/blade-workflow/moduleInfo'
|
||
|
|
// 查询
|
||
|
|
export const getList = (query) => {
|
||
|
|
return request({
|
||
|
|
url: `${prefix}/list`,
|
||
|
|
method: 'get',
|
||
|
|
params:query
|
||
|
|
})
|
||
|
|
}
|
||
|
|
export const add = (row) => {
|
||
|
|
return request({
|
||
|
|
url: `${prefix}/save`,
|
||
|
|
method: 'post',
|
||
|
|
data: row
|
||
|
|
})
|
||
|
|
}
|
||
|
|
export const update = (row) => {
|
||
|
|
return request({
|
||
|
|
url: `${prefix}/update`,
|
||
|
|
method: 'post',
|
||
|
|
data: row
|
||
|
|
})
|
||
|
|
}
|
||
|
|
export const remove = (ids) => {
|
||
|
|
return request({
|
||
|
|
url: `${prefix}/remove`,
|
||
|
|
method: 'post',
|
||
|
|
params: {
|
||
|
|
ids,
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
export const getDictionaries = () => {
|
||
|
|
return request({
|
||
|
|
url: `${prefix}//basicData`,
|
||
|
|
method: 'get',
|
||
|
|
|
||
|
|
})
|
||
|
|
}
|