jiangping
2024-01-26 8ebca068bb00e530ce44e10e7d009bcaa46c6579
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '../../utils/request'
 
// 查询
export function fetchList (data) {
    return request.post('/business/insuranceApply/page', data, {
        trim: true
    })
}
 
// 修改
export function updateById (data) {
    return request.post('/business/insuranceApply/updateById', data)
}
export function getDetail (id) {
    return request.get(`business/insuranceApply/${id}`)
}