zqq: 遥感影像数据下载检索条件

This commit is contained in:
qqGroup0 2023-04-18 22:28:07 +08:00
parent cd9cf8ec3f
commit ea9ed374c4
4 changed files with 597 additions and 285 deletions

View File

@ -9,22 +9,23 @@ export const getRemoteSensingSourceData = (param) => {
}); });
}; };
export const getSelectionCondition = (param) => { export const getRemoteSensingSourceDataByCondition = (current, size, optionsJson) => {
return request({ 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', method: 'get',
params: param, params: param,
}); });
}; };
export const getPagesRemoteSensingSourceData = (current, size, params) => {
return request({
url: '/api/' + moduleName + '/ui/remoteSensing/PagesData',
method: 'get',
params: {
current,
size,
...params,
},
});
};

View File

@ -37,8 +37,9 @@
</el-col> </el-col>
<el-col :span="14"> <el-col :span="14">
<div class="system-role-padding layout-padding-auto layout-padding-view"> <div class="system-role-padding layout-padding-auto layout-padding-view">
<div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;"> <div class="system-user-search mb15"
<!-- <el-input size="default" placeholder="please enter username" style="max-width: 180px" v-model="state.searchName" style="display: flex;margin-left: 10px;margin-top: 10px;">
<!-- <el-input size="default" placeholder="please enter username" style="max-width: 180px" v-model="state.searchName"
clearable></el-input> clearable></el-input>
<el-button size="default" type="primary" class="ml10" @click="getTableData"> <el-button size="default" type="primary" class="ml10" @click="getTableData">
<el-icon> <el-icon>
@ -46,15 +47,21 @@
</el-icon> </el-icon>
search search
</el-button>--> </el-button>-->
<el-button size="default" type="success" class="ml10" @click="uploadData"> <el-button size="default"
type="success"
class="ml10"
@click="uploadData">
<el-icon> <el-icon>
<ele-Upload/> <ele-Upload />
</el-icon> </el-icon>
upload upload
</el-button> </el-button>
<el-button size="default" type="danger" class="ml10" @click="batchDel"> <el-button size="default"
type="danger"
class="ml10"
@click="batchDel">
<el-icon> <el-icon>
<ele-Delete/> <ele-Delete />
</el-icon> </el-icon>
batch delete batch delete
</el-button> </el-button>
@ -64,7 +71,8 @@
v-loading="state.tableData.loading" v-loading="state.tableData.loading"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
style="width: 100%"> style="width: 100%">
<el-table-column type="selection" width="55" /> <el-table-column type="selection"
width="55" />
<el-table-column type="index" <el-table-column type="index"
label="ID" label="ID"
width="50" /> width="50" />
@ -79,17 +87,24 @@
label="image" label="image"
show-overflow-tooltip> show-overflow-tooltip>
<template #default="scope"> <template #default="scope">
<el-popover trigger="hover" placement="right" popper-class="max-h-300px overflow-auto" :width="330"> <el-popover trigger="hover"
placement="right"
popper-class="max-h-300px overflow-auto"
:width="330">
<!-- table中原本显示的图片 --> <!-- table中原本显示的图片 -->
<template #reference> <template #reference>
<img :src="scope.row.link" :alt="scope.row.link" style="max-height: 130px;max-width: 130px"> <img :src="scope.row.link"
:alt="scope.row.link"
style="max-height: 130px;max-width: 130px">
</template> </template>
<!-- 鼠标移入时弹出的图片 --> <!-- 鼠标移入时弹出的图片 -->
<img :src="scope.row.link" alt="" style="height: 150px;width: 300px"> <img :src="scope.row.link"
alt=""
style="height: 150px;width: 300px">
</el-popover> </el-popover>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column prop="size" <!-- <el-table-column prop="size"
label="size" label="size"
show-overflow-tooltip> show-overflow-tooltip>
<template #default="scope"> <template #default="scope">
@ -103,8 +118,14 @@
label="Operate" label="Operate"
show-overflow-tooltip> show-overflow-tooltip>
<template #default="scope"> <template #default="scope">
<el-button size="small" text type="primary" @click="editData(scope.row)">Edit</el-button> <el-button size="small"
<el-button size="small" text type="primary" @click="del(scope.row)">Delete</el-button> text
type="primary"
@click="editData(scope.row)">Edit</el-button>
<el-button size="small"
text
type="primary"
@click="del(scope.row)">Delete</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -125,8 +146,10 @@
</el-config-provider> </el-config-provider>
<RoleDialog ref="roleDialogRef" <RoleDialog ref="roleDialogRef"
@refresh="getTableData()" /> @refresh="getTableData()" />
<Upload ref="uploadRef" @callback="getTableData"/> <Upload ref="uploadRef"
<EditPicture ref="editUploadRef" @callback="getTableData"/> @callback="getTableData" />
<EditPicture ref="editUploadRef"
@callback="getTableData" />
</div> </div>
</template> </template>
@ -134,8 +157,8 @@
import type { TabsPaneContext } from 'element-plus'; import type { TabsPaneContext } from 'element-plus';
import Upload from './component/upload.vue'; import Upload from './component/upload.vue';
import EditPicture from './component/editPicture.vue'; import EditPicture from './component/editPicture.vue';
import {getPicturePage,getDisasterPage,delPicture} from '/@/api/data/pictureInfo.js'; import { getPicturePage, getDisasterPage, delPicture } from '/@/api/data/pictureInfo.js';
import en from 'element-plus/dist/locale/en.mjs' import en from 'element-plus/dist/locale/en.mjs';
const activeName = ref('first'); const activeName = ref('first');
// //
@ -149,9 +172,9 @@ const editUploadRef = ref();
// //
const roleDialogRef = ref(); const roleDialogRef = ref();
const state = reactive({ const state = reactive({
multipleSelection:[], multipleSelection: [],
tabVal:'first', tabVal: 'first',
disasterId:null, disasterId: null,
disasterData: { disasterData: {
data: [], data: [],
total: 0, total: 0,
@ -174,39 +197,44 @@ const state = reactive({
}, },
}); });
const handleSelectionChange = (val) => { const handleSelectionChange = (val) => {
state.multipleSelection = val state.multipleSelection = val;
} };
// //
const formatName = (name) => { const formatName = (name) => {
if(name){ if (name) {
return name.substr(0,name.indexOf(".")); return name.substr(0, name.indexOf('.'));
} }
return name; return name;
} };
const auditData = (row) => { const auditData = (row) => {
let id = row.id let id = row.id;
auditRef.value.openDialog([{"id":id}]); auditRef.value.openDialog([{ id: id }]);
} };
// //
const formatSize = (size) => { const formatSize = (size) => {
var data = ""; var data = '';
if (size < 0.1 * 1024) { //0.1KBB if (size < 0.1 * 1024) {
data = size.toFixed(2) + "B"; //0.1KBB
} else if (size < 0.1 * 1024 * 1024) {//0.1MBKB data = size.toFixed(2) + 'B';
data = (size / 1024).toFixed(2) + "KB"; } else if (size < 0.1 * 1024 * 1024) {
} else if (size < 0.1 * 1024 * 1024 * 1024) { //0.1GBMB //0.1MBKB
data = (size / (1024 * 1024)).toFixed(2) + "MB"; data = (size / 1024).toFixed(2) + 'KB';
} else { //GB } else if (size < 0.1 * 1024 * 1024 * 1024) {
data = (size / (1024 * 1024 * 1024)).toFixed(2) + "GB"; //0.1GBMB
data = (size / (1024 * 1024)).toFixed(2) + 'MB';
} else {
//GB
data = (size / (1024 * 1024 * 1024)).toFixed(2) + 'GB';
} }
var sizestr = data + ""; var sizestr = data + '';
var len = sizestr.indexOf("\."); var len = sizestr.indexOf('.');
var dec = sizestr.substr(len + 1, 2); var dec = sizestr.substr(len + 1, 2);
if (dec == "00") {//00 if (dec == '00') {
//00
return sizestr.substring(0, len) + sizestr.substr(len + 3, 2); return sizestr.substring(0, len) + sizestr.substr(len + 3, 2);
} }
return sizestr; return sizestr;
} };
const formatSizeUnits = (size) => { const formatSizeUnits = (size) => {
if (size === 0 || size === -1) return '0 B'; if (size === 0 || size === -1) return '0 B';
var k = 1000, // or 1024 var k = 1000, // or 1024
@ -214,37 +242,39 @@ const formatSizeUnits = (size) => {
i = Math.floor(Math.log(size) / Math.log(k)); i = Math.floor(Math.log(size) / Math.log(k));
return (size / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i]; return (size / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i];
} };
// //
const tableClick = (row, column, event) => { const tableClick = (row, column, event) => {
state.disasterId = row.disasterId; state.disasterId = row.disasterId;
getTableData(); getTableData();
} };
// //
const getDisasterData = () => { const getDisasterData = () => {
state.disasterData.loading = true; state.disasterData.loading = true;
getDisasterPage(state.disasterData.param.pageNum,state.disasterData.param.pageSize,{}).then(res=>{ getDisasterPage(state.disasterData.param.pageNum, state.disasterData.param.pageSize, {}).then((res) => {
state.disasterData.data = res.records; state.disasterData.data = res.records;
state.disasterData.total = res.total; state.disasterData.total = res.total;
state.disasterData.loading = false; state.disasterData.loading = false;
}) });
} };
// //
const getTableData = () => { const getTableData = () => {
state.tableData.loading = true; state.tableData.loading = true;
getPicturePage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"disasterId_equal":state.disasterId,"isDeleted_equal":0}).then(res=>{ getPicturePage(state.tableData.param.pageNum, state.tableData.param.pageSize, { disasterId_equal: state.disasterId, isDeleted_equal: 0 }).then(
(res) => {
state.tableData.data = res.records; state.tableData.data = res.records;
state.tableData.total = res.total; state.tableData.total = res.total;
}) }
);
setTimeout(() => { setTimeout(() => {
state.tableData.loading = false; state.tableData.loading = false;
}, 500); }, 500);
}; };
// //
const uploadData = () => { const uploadData = () => {
if(state.disasterId == null){ if (state.disasterId == null) {
ElMessage.warning("Please select the disaster first") ElMessage.warning('Please select the disaster first');
return false; return false;
} }
uploadRef.value.openDialog(state.disasterId); uploadRef.value.openDialog(state.disasterId);
@ -255,8 +285,8 @@ const editData = (row) => {
}; };
// //
const batchDel = () => { const batchDel = () => {
if(state.multipleSelection.length == 0){ if (state.multipleSelection.length == 0) {
ElMessage.warning("Select the data to be operated first"); ElMessage.warning('Select the data to be operated first');
return false; return false;
} }
ElMessageBox.confirm(`This action batch deletes the picture dataWhether to continue?`, 'tip', { ElMessageBox.confirm(`This action batch deletes the picture dataWhether to continue?`, 'tip', {
@ -265,14 +295,14 @@ const batchDel = () => {
type: 'warning', type: 'warning',
}) })
.then(() => { .then(() => {
let id = state.multipleSelection.map(item=>item.id) let id = state.multipleSelection.map((item) => item.id);
delPicture(id.join()).then(res=>{ delPicture(id.join()).then((res) => {
getTableData(); getTableData();
ElMessage.success('delete successfully'); ElMessage.success('delete successfully');
}) });
}) })
.catch(() => {}); .catch(() => {});
} };
// //
const del = (row) => { const del = (row) => {
ElMessageBox.confirm(`This action will delete the picture${row.name}Whether to continue?`, 'tip', { ElMessageBox.confirm(`This action will delete the picture${row.name}Whether to continue?`, 'tip', {
@ -281,10 +311,10 @@ const del = (row) => {
type: 'warning', type: 'warning',
}) })
.then(() => { .then(() => {
delPicture(row.id).then(res=>{ delPicture(row.id).then((res) => {
getTableData(); getTableData();
ElMessage.success('delete successfully'); ElMessage.success('delete successfully');
}) });
}) })
.catch(() => {}); .catch(() => {});
}; };
@ -323,12 +353,12 @@ onMounted(() => {
} }
.system-role-container { .system-role-container {
.system-role-padding { .system-role-padding {
padding: 15px; padding: 15px;
.el-table { .el-table {
flex: 1; flex: 1;
} }
} }
} }
.demo-tabs > .el-tabs__content { .demo-tabs > .el-tabs__content {
padding: 32px; padding: 32px;

View File

@ -3,6 +3,7 @@
<el-row :gutter="22"> <el-row :gutter="22">
<el-col :span="10"> <el-col :span="10">
<div class="system-role-padding layout-padding-auto layout-padding-view"> <div class="system-role-padding layout-padding-auto layout-padding-view">
<span style="margin:2%;font-weight: 600;font-size: 18px;">Disaster Info</span>
<el-table :data="state.disasterData.data" <el-table :data="state.disasterData.data"
v-loading="state.disasterData.loading" v-loading="state.disasterData.loading"
style="width: 100%" style="width: 100%"
@ -39,7 +40,7 @@
<div class="system-user-search mb15" <div class="system-user-search mb15"
style="display: flex;margin-left: 10px;margin-top: 10px;"> style="display: flex;margin-left: 10px;margin-top: 10px;">
<!-- 选择灾害类型 --> <!-- 选择灾害类型 -->
<el-select v-model="state.value_disasterType" <!-- <el-select v-model="state.value_disasterType"
size="default" size="default"
clearable clearable
placeholder="Select disaster type" placeholder="Select disaster type"
@ -48,18 +49,18 @@
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" /> :value="item.value" />
</el-select> </el-select> -->
<!-- 选择灾害时间 --> <!-- 选择灾害时间 -->
<el-date-picker v-model="state.value_disasterDate" <!-- <el-date-picker v-model="state.value_disasterDate"
type="date" type="date"
placeholder="Select disaster time" placeholder="Select disaster time"
format="YYYY-MM-DD" format="YYYY-MM-DD"
value-format="YYYY-MM-DD" value-format="YYYY-MM-DD"
class="ml10" class="ml10"
size="default" size="default"
@focus="searchDisasterDate" /> @focus="searchDisasterDate" /> -->
<!-- 选择受灾地 --> <!-- 选择受灾地 -->
<el-select v-model="state.value_disasterCountry" <!-- <el-select v-model="state.value_disasterCountry"
size="default" size="default"
clearable clearable
placeholder="Select disaster country" placeholder="Select disaster country"
@ -69,8 +70,33 @@
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" /> :value="item.value" />
</el-select> </el-select> -->
<el-row>
<el-col :span="8">
<el-tree-select v-model="state.value_satelliteType"
:data="state.options_satelliteType"
multiple
collapse-tags
collapse-tags-tooltip
:render-after-expand="false"
show-checkbox
clearable
placeholder="Select satellite type" />
</el-col>
<el-col :span="8"
style="padding-left:1%;">
<el-tree-select v-model="state.value_resolution"
:data="state.options_resolution"
multiple
collapse-tags
collapse-tags-tooltip
:render-after-expand="false"
show-checkbox
clearable
placeholder="Select resolution" />
</el-col>
<el-col :span="5">
<el-button size="default" <el-button size="default"
type="primary" type="primary"
class="ml10" class="ml10"
@ -80,6 +106,8 @@
</el-icon> </el-icon>
Search Search
</el-button> </el-button>
</el-col>
</el-row>
</div> </div>
<!-- id卫星类型生产日期产品谱段产品分辨率云覆盖量景中心经纬度元数据下载链接缩略图 支撑单位 --> <!-- id卫星类型生产日期产品谱段产品分辨率云覆盖量景中心经纬度元数据下载链接缩略图 支撑单位 -->
@ -176,7 +204,7 @@
<script setup> <script setup>
import { ref, reactive, onMounted } from 'vue'; import { ref, reactive, onMounted } from 'vue';
import { getRemoteSensingSourceData, getSelectionCondition, getPagesRemoteSensingSourceData } from "/@/api/remoteSensingSourceData/remoteSensingSourceData.js"; import { getRemoteSensingSourceData, getRemoteSensingSourceDataByCondition, getPagesRemoteSensingSourceData } from "/@/api/remoteSensingSourceData/remoteSensingSourceData.js";
import { getDisasterPage } from '/@/api/data/otherData.js' import { getDisasterPage } from '/@/api/data/otherData.js'
@ -193,7 +221,7 @@ const state = reactive({
}, },
tableData: { tableData: {
data: [], data: [],
total: 0, total: null,
loading: false, loading: false,
param: { param: {
search: '', search: '',
@ -202,13 +230,51 @@ const state = reactive({
}, },
}, },
disasterId: null, disasterId: null,
listData: [],
satelliteCodeList: [],
// //
options_disasterType: [], // options_disasterType: [],
value_disasterType: '', // value_disasterType: '',
value_disasterDate: '', // value_disasterDate: '',
options_disasterCountry: [], // options_disasterCountry: [],
value_disasterCountry: [], // value_disasterCountry: [],
options_resolution: [{
label: '<0.8m',
value: '<0.8m'
}, {
label: '0.8m-1m',
value: '0.8m-1m'
}, {
label: '1m-10m',
value: '1m-10m'
}, {
label: '10m-30m',
value: '10m-30m'
}, {
label: '30m-50m',
value: '30m-50m'
}, {
label: '>50m',
value: '>50m'
}],
options_satelliteType: [{
label: 'Optical satellite',
value: 'Optical satellite'
}, {
label: 'Hyperspectral satellite',
value: 'Hyperspectral satellite'
}, {
label: 'Radar satellite',
value: 'Radar satellite'
}, {
label: 'Night light satellite',
value: 'Night light satellite'
}],
value_satelliteType: '',
value_resolution: [],
requestData: [], requestData: [],
requestResolution: [],
requestSatellite: []
}) })
// //
@ -222,44 +288,282 @@ const getDisasterData = () => {
} }
// //
const tableClick = (row, column, event) => { const tableClick = (row) => {
state.disasterId = row.disasterId; state.disasterId = row.disasterId;
getTableData() getData()
}
//
const getData = () => {
let data = {
disasterId: state.disasterId,
}
getPagesRemoteSensingSourceData(data).then(
(res) => {
console.log(res.records);
state.requestData = res.records;
state.tableData.total = res.total;
})
// getRemoteSensingSourceDataByCondition(1, 1000, JSON.stringify(data)).then(
// (res) => {
// state.requestData = res.records;
// for (let index = 0; index < res.records.length; index++) {
// state.requestResolution[index] = state.requestData[index].productResolution
// state.requestSatellite[index] = state.requestData[index].satelliteCode
// }
// state.requestResolution = new Set(state.requestResolution)
// state.requestSatellite = new Set(state.requestSatellite)
// })
} }
// //
const searchRemoteSensingSourceData = () => { const searchRemoteSensingSourceData = () => {
const select = { //
"disasterType": state.value_disasterType, for (var i = 0; i < state.value_satelliteType.length; i++) {
"disasterDate": state.value_disasterDate, if (state.value_satelliteType[i] == state.options_satelliteType[0].value) {
"disasterCountry": state.value_disasterCountry, state.satelliteCodeList.push('Landset8_OLI_TIRS');
"size": state.tableData.param.pageSize, }
"current": state.tableData.param.pageNum else if (state.value_satelliteType[i] == state.options_satelliteType[1].value) {
let arrData = ['Sentinel -2_Sentinel - 2A', 'Sentinel -2_Sentinel - 2B', 'GF1', 'GF1B', 'GF1C', 'GF1D', 'GF2', 'GF4', 'GF6'];
arrData.forEach(item => {
state.satelliteCodeList.push(item);
})
}
} }
// //
getRemoteSensingSourceData(select).then( var productResolutionMin = 0
var productResolutionMax = null
for (let index = 0; index < state.value_resolution.length; index++) {
if (state.value_resolution[index] == state.options_resolution[0].value) {
let data = {
productResolutionMin: 0,
productResolutionMax: 0.8
}
state.listData.push(data);
}
if (state.value_resolution[index] == state.options_resolution[1].value) {
let data = {
productResolutionMin: 0.8,
productResolutionMax: 1
}
state.listData.push(data);
}
if (state.value_resolution[index] == state.options_resolution[2].value) {
let data = {
productResolutionMin: 1,
productResolutionMax: 10
}
state.listData.push(data);
}
if (state.value_resolution[index] == state.options_resolution[3].value) {
let data = {
productResolutionMin: 10,
productResolutionMax: 30
}
state.listData.push(data);
}
if (state.value_resolution[index] == state.options_resolution[4].value) {
let data = {
productResolutionMin: 30,
productResolutionMax: 50
}
state.listData.push(data);
}
if (state.value_resolution[index] == state.options_resolution[5].value) {
let data = {
productResolutionMin: 50,
productResolutionMax: 1000
}
state.listData.push(data);
}
}
let dataNew = {};
if (state.satelliteCodeList.length != 0) {
dataNew = {
disasterId: state.disasterId,
satelliteCodeList: state.satelliteCodeList.join(","),
productResolutionVos: state.listData
}
} else {
dataNew = {
disasterId: state.disasterId,
productResolutionVos: state.listData
}
}
getDataByCondition(state.tableData.param.pageNum, state.tableData.param.pageSize, dataNew)
}
//
const getDataByCondition = (current, size, dataNew) => {
console.log('传过来的数据:', state.tableData.param.pageNum);
getRemoteSensingSourceDataByCondition(current, size, JSON.stringify(dataNew)).then(
(res) => { (res) => {
state.requestData = res.records; state.requestData = res.records;
state.tableData.total = res.total; state.tableData.total = res.total;
state.tableData.param.pageNum = res.current;
state.tableData.param.pageSize = res.size;
console.log(state.requestData)
}) })
} }
// //
const getTableData = () => { const getTableData = (condition) => {
state.tableData.loading = true; state.tableData.loading = true;
getPagesRemoteSensingSourceData(state.tableData.param.pageNum, state.tableData.param.pageSize, { "disasterId": state.disasterId }).then( getPagesRemoteSensingSourceData(condition).then(
(res) => { (res) => {
state.requestData = res.records; state.requestData = res.records;
state.tableData.total = res.total;
var requestSatellite = []
var requestResolution = []
for (let index = 0; index < state.requestData.length; index++) {
requestSatellite[index] = state.requestData[index].satelliteCode
requestResolution[index] = state.requestData[index].productResolution
}
//
var uniSatellite = unique(requestSatellite);
var lenSatellite = uniSatellite.length
for (let index = 0; index < lenSatellite; index++) {
let A = {}
A['label'] = uniSatellite[index]
A['value'] = uniSatellite[index]
state.options_satelliteType[index] = A
}
//
var uniResolution = unique(requestResolution);
var lenResolution = uniResolution.length
for (let index = 0; index < lenResolution; index++) {
let A = {}
A['label'] = uniResolution[index]
A['value'] = uniResolution[index]
state.options_resolution[index] = A
}
}) })
setTimeout(() => {
state.tableData.loading = false;
}, 500);
// setTimeout(() => {
// state.tableData.loading = false;
// }, 500);
} }
//
const getSatelliteAndResolution = () => {
var requestSatellite = []
var requestResolution = []
for (let index = 0; index < state.requestData.length; index++) {
requestSatellite[index] = state.requestData[index].satelliteCode
requestResolution[index] = state.requestData[index].productResolution
}
//
var uniSatellite = unique(requestSatellite);
var lenSatellite = uniSatellite.length
for (let index = 0; index < lenSatellite; index++) {
let A = {}
A['label'] = uniSatellite[index]
A['value'] = uniSatellite[index]
state.options_satelliteType[index] = A
}
//
var uniResolution = unique(requestResolution);
var lenResolution = uniResolution.length
for (let index = 0; index < lenResolution; index++) {
let A = {}
A['label'] = uniResolution[index]
A['value'] = uniResolution[index]
state.options_resolution[index] = A
}
}
//
const unique = (arr) => {
return arr.filter(function (item, index, arr) {
return arr.indexOf(item, 0) === index;
});
}
// size
const onHandleDisasterSizeChange = (val) => {
state.disasterData.param.pageSize = val;
getDisasterData();
};
// current
const onHandleDisasterCurrentChange = (val) => {
state.disasterData.param.pageNum = val;
getDisasterData();
};
// size
const onHandleSizeChange = (val) => {
state.tableData.param.pageSize = val;
state.tableData.param.pageNum = state.tableData.param.pageNum;
let dataNew = {};
if (state.satelliteCodeList.length != 0) {
dataNew = {
disasterId: state.disasterId,
satelliteCodeList: state.satelliteCodeList.join(","),
productResolutionVos: state.listData
}
} else {
dataNew = {
disasterId: state.disasterId,
productResolutionVos: state.listData
}
}
getDataByCondition(state.tableData.param.pageNum, state.tableData.param.pageSize, dataNew)
// var condition = {
// current: state.tableData.param.pageNum,
// size: 10,
// disasterId: state.disasterId,
// satelliteCode: state.satelliteSelected,
// productResolution: state.resolutionSelected
// }
// // searchRemoteSensingSourceData()
// getTableData(condition)
};
// current
const onHandleCurrentChange = (val) => {
state.tableData.param.pageSize = state.tableData.param.pageSize;
state.tableData.param.pageNum = val;
console.log('当前页:', state.tableData.param.pageNum);
let dataNew = {};
if (state.satelliteCodeList.length != 0) {
dataNew = {
disasterId: state.disasterId,
satelliteCodeList: state.satelliteCodeList.join(","),
productResolutionVos: state.listData
}
} else {
dataNew = {
disasterId: state.disasterId,
productResolutionVos: state.listData
}
}
getDataByCondition(state.tableData.param.pageNum, state.tableData.param.pageSize, dataNew)
// var condition = {
// current: state.tableData.param.pageNum,
// size: 10,
// disasterId: state.disasterId,
// satelliteCode: state.satelliteSelected,
// productResolution: state.resolutionSelected
// }
// searchRemoteSensingSourceData()
// getTableData(condition)
};
onMounted(() => {
getDisasterData();
})
// //
const searchDisasterCountry = () => { const searchDisasterCountry = () => {
const selectCountry = { const selectCountry = {
@ -327,38 +631,13 @@ const searchDisasterDate = () => {
}) })
} }
} }
//
const onHandleDisasterSizeChange = (val) => {
state.disasterData.param.pageSize = val;
getDisasterData();
};
//
const onHandleDisasterCurrentChange = (val) => {
state.disasterData.param.pageNum = val;
getDisasterData();
};
//
const onHandleSizeChange = (val) => {
state.tableData.param.pageSize = val;
state.tableData.param.pageNum = state.tableData.param.pageNum;
// searchRemoteSensingSourceData()
getTableData()
};
//
const onHandleCurrentChange = (val) => {
state.tableData.param.pageSize = state.tableData.param.pageSize;
state.tableData.param.pageNum = val;
// searchRemoteSensingSourceData()
getTableData()
};
onMounted(() => {
getDisasterData();
})
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.system-role-padding {
padding-bottom: 2%;
}
.el-pagination {
padding-left: 1%;
}
</style> </style>

View File

@ -84,6 +84,8 @@
v-model="state.satelliteSelected" v-model="state.satelliteSelected"
:data="sensor" :data="sensor"
multiple multiple
collapse-tags
collapse-tags-tooltip
:render-after-expand="false" :render-after-expand="false"
show-checkbox show-checkbox
placeholder="Select satellite type" /> placeholder="Select satellite type" />