gaoluyang
2026-08-25 2288cbe067c5bafd53f77cef00950eadc00c91b1
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 },
  });
}