k94314517
2024-04-09 02bc3bfe47e3d5311a0bb041c94e70a34b1ca73c
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}`)