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.
63 lines
1.1 KiB
63 lines
1.1 KiB
import request from '@/utils/request'
|
|
|
|
// 修改
|
|
|
|
export function updataAllFxzzcy(query) {
|
|
return request({
|
|
url: '/df/fxzzcy/editBatch',
|
|
method: 'put',
|
|
data: query
|
|
})
|
|
}
|
|
|
|
// 查询水闸防汛组织成员列表
|
|
export function listFxzzcy(query) {
|
|
return request({
|
|
url: '/df/fxzzcy/list',
|
|
method: 'post',
|
|
data: query
|
|
})
|
|
}
|
|
|
|
// 查询水闸防汛组织成员详细
|
|
export function getFxzzcy(id) {
|
|
return request({
|
|
url: '/df/fxzzcy/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增水闸防汛组织成员
|
|
export function addFxzzcy(data) {
|
|
return request({
|
|
url: '/df/fxzzcy',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改水闸防汛组织成员
|
|
export function updateFxzzcy(data) {
|
|
return request({
|
|
url: '/df/fxzzcy',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除水闸防汛组织成员
|
|
export function delFxzzcy(id) {
|
|
return request({
|
|
url: '/df/fxzzcy/' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 导出水闸防汛组织成员
|
|
export function exportFxzzcy(query) {
|
|
return request({
|
|
url: '/df/fxzzcy/export',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|