Sign in
简柏林
/
thingskit-front
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
1f7c5eb78fc244460007b399449cb42e12a9de9d
Authored by
loveumiko
2024-10-25 18:02:12 +0800
1 parent
2b1d8e15
fix: 边缘管理分配设备的时候选择设备添加isExcludeEdge参数为false
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
src/api/dataBoard/model/index.ts
src/views/edge/instance/components/EdgeDeviceDistribution/index.vue
src/api/dataBoard/model/index.ts
View file @
1f7c5eb
...
...
@@ -174,4 +174,5 @@ export interface GetMeetTheConditionsDeviceParams {
174
174
transportType?: TransportTypeEnum;
175
175
isEdgeDistribution?: boolean;
176
176
edgeId?: string;
177
+
isExcludeEdge?: boolean;
177
178
}
...
...
src/views/edge/instance/components/EdgeDeviceDistribution/index.vue
View file @
1f7c5eb
...
...
@@ -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,
...
...