You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
570 B
29 lines
570 B
|
3 years ago
|
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,
|
||
|
|
});
|
||
|
|
};
|