import request from '@/utils/request' // 查询施工交付-其他列表 export function listOther(query) { return request({ url: '/oa/other/list', method: 'get', params: query }) } // 查询施工交付-其他详细 export function getOther(id) { return request({ url: '/oa/other/' + id, method: 'get' }) } // 新增施工交付-其他 export function addOther(data) { return request({ url: '/oa/other', method: 'post', data: data }) } // 修改施工交付-其他 export function updateOther(data) { return request({ url: '/oa/other', method: 'put', data: data }) } // 删除施工交付-其他 export function delOther(id) { return request({ url: '/oa/other/' + id, method: 'delete' }) }