diff --git a/src/api/remoteSensingSourceData/remoteSensingSourceData.js b/src/api/remoteSensingSourceData/remoteSensingSourceData.js index 1c905ea..c69fdea 100644 --- a/src/api/remoteSensingSourceData/remoteSensingSourceData.js +++ b/src/api/remoteSensingSourceData/remoteSensingSourceData.js @@ -9,9 +9,22 @@ export const getRemoteSensingSourceData = (param) => { }); }; -export const getSelectionCondition = (param) => { +export const getRemoteSensingSourceDataByCondition = (current, size, optionsJson) => { return request({ - url: '/api/' + moduleName + '/ui/disasterInfo/selectCondition', + url: '/api/' + moduleName + '/ui/remoteSensing/Condition', + method: 'get', + contentType: 'application/json', + params: { + optionsJson, + current, + size, + }, + }); +}; + +export const getPagesRemoteSensingSourceData = (param) => { + return request({ + url: '/api/' + moduleName + '/ui/remoteSensing/PagesData', method: 'get', params: param, }); diff --git a/src/views/dataService/pictureInfo/index.vue b/src/views/dataService/pictureInfo/index.vue index bffe4af..d225c20 100644 --- a/src/views/dataService/pictureInfo/index.vue +++ b/src/views/dataService/pictureInfo/index.vue @@ -1,44 +1,45 @@ - - - - - - - - - - - - - - - - - - - - - - upload - - - - - - batch delete - - + + + + + upload + + + + + + batch delete + + - + @@ -79,17 +87,24 @@ label="image" show-overflow-tooltip> - + - + - + - - - - - - - - - - + + + + Disaster Info + + + + + + + + + + + + + + + + + + + - - - - - Search - + + + + + + + + + + + + + Search + + + - - - - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + \ No newline at end of file diff --git a/src/views/dataService/remoteSensingData/components/searchCondition.vue b/src/views/dataService/remoteSensingData/components/searchCondition.vue index 4c7c55d..72b9bda 100644 --- a/src/views/dataService/remoteSensingData/components/searchCondition.vue +++ b/src/views/dataService/remoteSensingData/components/searchCondition.vue @@ -84,6 +84,8 @@ v-model="state.satelliteSelected" :data="sensor" multiple + collapse-tags + collapse-tags-tooltip :render-after-expand="false" show-checkbox placeholder="Select satellite type" /> @@ -382,6 +384,10 @@ const ClearCondition = () => { } .coordinateBtn { width: 90%; + word-break: keep-all; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .lowerBtn { width: 90%; diff --git a/vite.config.js b/vite.config.js index a395073..f7632fb 100644 --- a/vite.config.js +++ b/vite.config.js @@ -30,7 +30,7 @@ const viteConfig = defineConfig((mode) => { hmr: true, proxy: { '/api': { - target: 'http://192.168.31.250:9090', + target: 'http://192.168.31.14:9090', ws: true, changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, ''),