gaoluyang
昨天 16c1a8e2a52012af189529ee70f642ba79ae0f3a
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 },
  });
}