huminmin
3 天以前 117c264a37df5b82fe812b366dab5feeba2a3bb4
1
2
3
4
5
6
7
8
9
10
import request from "@/utils/request";
 
// 检测指定模块的基础数据是否就绪
export function dataCheck(modules) {
  return request({
    url: "/mock/dataCheck",
    method: "post",
    data: { modules },
  });
}