nidapeng
2024-04-06 54bbda6f374f3b8ebafed04d49f756fd75e53a1a
company/src/api/business/unionChange.js
@@ -6,6 +6,12 @@
        trim: true
    })
}
// 查询
export function getSignLink (data) {
    return request.post('/business/unionChange/getSignLink', data, {
        trim: true
    })
}
// 创建
export function create (data) {
@@ -20,7 +26,19 @@
export function updateById (data) {
    return request.post('/business/unionChange/updateById', data)
}
export function uploadBXD (data) {
    return request.post('/business/unionChange/uploadBXD', data)
}
export function close (data) {
    return request.post('/business/unionChange/close', data)
}
export function exportDetailExcel (data) {
    return request.post('/business/unionChange/exportDetailExcel', data, {
        trim: true,
        download: true
    })
}
// 根据ID查询
export function getById (id) {
    return request.get(`/business/unionChange/${id}`)