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.
64 lines
1.1 KiB
64 lines
1.1 KiB
|
3 months ago
|
|
||
|
|
import request from '@/utils/request'
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 新增pmcanteendemand
|
||
|
|
* @param pram
|
||
|
|
*/
|
||
|
|
export function pmcanteendemandCreateApi(data) {
|
||
|
|
return request({
|
||
|
|
url: `autogencode/pmcanteendemand/save`,
|
||
|
|
method: 'POST',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* pmcanteendemand更新
|
||
|
|
* @param pram
|
||
|
|
*/
|
||
|
|
export function pmcanteendemandUpdateApi(data) {
|
||
|
|
return request({
|
||
|
|
url: `autogencode/pmcanteendemand/update`,
|
||
|
|
method: 'POST',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* pmcanteendemand详情
|
||
|
|
* @param pram
|
||
|
|
*/
|
||
|
|
export function pmcanteendemandDetailApi(id) {
|
||
|
|
return request({
|
||
|
|
url: `autogencode/pmcanteendemand/info/${id}`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* pmcanteendemand批量删除
|
||
|
|
* @param ids
|
||
|
|
*/
|
||
|
|
export function pmcanteendemandDeleteApi(ids) {
|
||
|
|
return request({
|
||
|
|
url: `autogencode/pmcanteendemand/delete`,
|
||
|
|
method: 'POST',
|
||
|
|
data: ids
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* pmcanteendemand列表
|
||
|
|
* @param pram
|
||
|
|
*/
|
||
|
|
export function pmcanteendemandListApi(params) {
|
||
|
|
return request({
|
||
|
|
url: `autogencode/pmcanteendemand/list`,
|
||
|
|
method: 'GET',
|
||
|
|
params
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|