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