jiangping
2024-01-31 95db36f778d5a6f4197cc2cde4390c84e57b26b6
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/applyChange/page', data, {
        trim: true
    })
}
 
// 修改
export function updateById (data) {
    return request.post('/business/applyChange/updateById', data)
}