zhang_nuo
2026-08-25 281c58d07364ff31688062d1c90193938fce5fdd
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 },
  });
}