|
|
@@ -49,11 +49,14 @@ export interface ReturnType {
|
|
|
|
|
|
/** 查询分享的相机*/
|
|
|
export const getShareCameraList = (params: CameraShareQueryType) => {
|
|
|
- return http.request<ReturnType>({
|
|
|
- url: '/cameraTenant/getList',
|
|
|
- method: 'GET',
|
|
|
- params,
|
|
|
- });
|
|
|
+ return http.request<ReturnType>(
|
|
|
+ {
|
|
|
+ url: '/cameraTenant/getList',
|
|
|
+ method: 'GET',
|
|
|
+ params,
|
|
|
+ },
|
|
|
+ { isShowErrorMessage: false },
|
|
|
+ );
|
|
|
};
|
|
|
|
|
|
/** 编辑分享的相机*/
|