gjj
2025-02-21 efe41f68868a8926dfc1a6851a492805b56786db
1
2
3
4
5
6
7
8
9
import { http } from "../utils/http";
export const AppAPI = {
  getRiskData(data, config = {}) {
    return http.post("/beh/environment/GetRiskData", data, config);
  },
  getRiskDetails(id, config = {}) {
    return http.post(`/beh/environment/risk/${id}`, null, config);
  },
};