Commit 1f7c5eb78fc244460007b399449cb42e12a9de9d

Authored by loveumiko
1 parent 2b1d8e15

fix: 边缘管理分配设备的时候选择设备添加isExcludeEdge参数为false

... ... @@ -174,4 +174,5 @@ export interface GetMeetTheConditionsDeviceParams {
174 174 transportType?: TransportTypeEnum;
175 175 isEdgeDistribution?: boolean;
176 176 edgeId?: string;
  177 + isExcludeEdge?: boolean;
177 178 }
... ...
... ... @@ -113,6 +113,7 @@
113 113 organizationId,
114 114 isEdgeDistribution: true,
115 115 edgeId: props.edgeId,
  116 + isExcludeEdge: true,
116 117 });
117 118 return result.map((item) => ({
118 119 ...item,
... ...