yuan
7 天以前 18e2c6f454f2e986b61ee2734e22c86587da5d41
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 },
  });
}