parent
51bce6fbc8
commit
0deac82a1b
3 changed files with 98 additions and 17 deletions
@ -0,0 +1,28 @@ |
||||
import request from "../utils/axios"; |
||||
|
||||
//放号天数
|
||||
export const queryDays = (query) => { |
||||
return request({ |
||||
url: "/api/blade-business/apm-config/already-config-day", |
||||
method: "get", |
||||
params: query, |
||||
}); |
||||
}; |
||||
|
||||
// 获取放号列表
|
||||
export const queryList = (query) => { |
||||
return request({ |
||||
url: "/api/blade-business/apm-config/detail-for-apm", |
||||
method: "get", |
||||
params: query, |
||||
}); |
||||
}; |
||||
|
||||
// 新增预约记录
|
||||
export const postExam = (data) => { |
||||
return request({ |
||||
url: "/api/blade-business/apm-record/save", |
||||
method: "post", |
||||
data, |
||||
}); |
||||
}; |
||||
Loading…
Reference in new issue