jiangping
2024-01-23 a946438f6d69f976c94935f53dd7f326947aba0f
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
}