spring
2025-02-17 3bada36496edc701f37daf59cd7fe1020b155f38
src/api/standard/standardLibrary.js
@@ -82,11 +82,11 @@
}
// 根据标准树进行标准查询
export function selectsStandardMethodByFLSSM(data) {
export function selectsStandardMethodByFLSSM(query) {
  return request({
    url: "/standardTree/selectsStandardMethodByFLSSM",
    method: "post",
    data: data,
    method: "get",
    params: query,
  });
}
@@ -127,11 +127,11 @@
}
// 通过检验标准查询检验项目
export function selectStandardProductListByMethodId(data) {
export function selectStandardProductListByMethodId(query) {
  return request({
    url: "/standardTree/selectStandardProductListByMethodId",
    method: "post",
    data: data,
    method: "get",
    params: query,
  });
}