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
588 B

import request from "../utils/axios";
2 years ago
//放号天数 - SM2
export const queryDays = (query) => {
return request({
url: "/api/blade-business/apm-config/already-config-day",
method: "get",
params: query,
});
};
2 years ago
// 获取放号列表 - SM2
export const queryList = (query) => {
return request({
url: "/api/blade-business/apm-config/detail-for-apm",
method: "get",
params: query,
});
};
2 years ago
// 新增预约记录 - SM2
export const postExam = (data) => {
return request({
url: "/api/blade-business/apm-record/save",
method: "post",
data,
});
};