45 lines
883 B
JavaScript
45 lines
883 B
JavaScript
|
|
import request from '@/utils/request'
|
||
|
|
|
||
|
|
// 查询不计时效维护列表
|
||
|
|
export function listEmisNotCalcAging(query) {
|
||
|
|
return request({
|
||
|
|
url: '/emis/emisNotCalcAging/list',
|
||
|
|
method: 'get',
|
||
|
|
params: query
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// 查询不计时效维护详细
|
||
|
|
export function getEmisNotCalcAging(id) {
|
||
|
|
return request({
|
||
|
|
url: '/emis/emisNotCalcAging/' + id,
|
||
|
|
method: 'get'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// 新增不计时效维护
|
||
|
|
export function addEmisNotCalcAging(data) {
|
||
|
|
return request({
|
||
|
|
url: '/emis/emisNotCalcAging',
|
||
|
|
method: 'post',
|
||
|
|
data: data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// 修改不计时效维护
|
||
|
|
export function updateEmisNotCalcAging(data) {
|
||
|
|
return request({
|
||
|
|
url: '/emis/emisNotCalcAging',
|
||
|
|
method: 'put',
|
||
|
|
data: data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// 删除不计时效维护
|
||
|
|
export function delEmisNotCalcAging(id) {
|
||
|
|
return request({
|
||
|
|
url: '/emis/emisNotCalcAging/' + id,
|
||
|
|
method: 'delete'
|
||
|
|
})
|
||
|
|
}
|