k94314517
2024-04-09 02bc3bfe47e3d5311a0bb041c94e70a34b1ca73c
platform/src/api/business/solutions.js
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,43 @@
import request from '../../utils/request'
// æŸ¥è¯¢
export function fetchList (data) {
    return request.post('/business/solutions/page', data, {
        trim: true
    })
}
// åˆ›å»º
export function create (data) {
    return request.post('/business/solutions/create', data)
}
// æŸ¥è¯¢å…¨éƒ¨ä¿é™©æ–¹æ¡ˆ
export function all (data) {
    return request.post('/business/solutions/list', data)
}
// ç¦ç”¨å¯ç”¨
export function updateStatus (data) {
    return request.post('/business/solutions/updateStatus', data)
}
// ä¿®æ”¹
export function updateById (data) {
    return request.post('/business/solutions/updateById', data)
}
// æ ¹æ®ID查询
export function solutionsId (id) {
    return request.get(`/business/solutions/${id}`)
}
// æŸ¥è¯¢ä¼ä¸šå…¨éƒ¨å…³è”方案
export function listForCompany (data) {
    return request.post('/business/companySolution/listForCompany', data)
}
// æ ¹æ®åŽ†å²ç‰ˆæœ¬æŸ¥è¯¢å½“å‰æœ€æ–°å¯ç”¨ç‰ˆæœ¬
export function getNewVersion (id) {
    return request.get(`/business/solutions/getNewVersion?solutionId=${id}`)
}