jiaosong
2023-11-09 f8b9ccf70df347ed40cadb44202e92a9cd812c3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '../../utils/request'
 
// 查询
export function fetchList (data) {
  return request.post('/business/bikeRepair/page', data, {
    trim: true
  })
}
 
// 修改
export function updateById (data) {
  return request.post('/business/bikeRepair/updateById', data)
}
 
// 修改
export function getFileList (id) {
  return request.get(`/business/bikeRepair/getFileList/${id}`)
}