diff --git a/src/api/jmap/mapdraft.js b/src/api/jmap/mapdraft.js index 054cabfb3..07ab3875e 100644 --- a/src/api/jmap/mapdraft.js +++ b/src/api/jmap/mapdraft.js @@ -469,3 +469,11 @@ export function getRouteNewList(mapId, params) { params }); } +// 获取自动折返分组列表 +export function getAutoReentryGroupList(mapId, params) { + return request({ + url: `/api/mapBuild/${mapId}/autoReentry/group/reentryTrack`, + method: 'get', + params + }); +} diff --git a/src/components/QueryListPage/QueryListPage.vue b/src/components/QueryListPage/QueryListPage.vue index 5afe0bed5..1115f1639 100644 --- a/src/components/QueryListPage/QueryListPage.vue +++ b/src/components/QueryListPage/QueryListPage.vue @@ -28,6 +28,7 @@ @select="onSelect" @select-all="onSelectAll" @selection-change="onSelectionChange" + @sort-change="sortChange" > @@ -45,6 +46,7 @@ :width="column.width" show-overflow-tooltip :sortable="column.sortable" + :sort-by="column.sortBy" />