ZZJ
2022-05-27 a689af1348938afd3b4506aad9b6d5057193e25d
src/api/camera.ts
@@ -66,11 +66,11 @@
  });
};
export const updateSnapshot = (cameraId: string) => {
export const updateSnapshot = (data: any) => {
  return request({
    url: "/saas/api-s/camera/updateSnapshotUrl",
    method: "get",
    params: { cameraId: cameraId }
    method: "post",
    data:data
  });
};