fix: 修复Filter数据在页面销毁时未重置问题
This commit is contained in:
parent
a62efa494f
commit
5125c5bf64
|
@ -257,6 +257,7 @@ import { Circle } from 'ol/geom'
|
||||||
import { fromLonLat } from 'ol/proj'
|
import { fromLonLat } from 'ol/proj'
|
||||||
import Feature from 'ol/Feature'
|
import Feature from 'ol/Feature'
|
||||||
import { Fill, Stroke, Style } from 'ol/style'
|
import { Fill, Stroke, Style } from 'ol/style'
|
||||||
|
import { cloneDeep } from 'lodash'
|
||||||
|
|
||||||
// Filter中的筛选列表
|
// Filter中的筛选列表
|
||||||
const filterList = [
|
const filterList = [
|
||||||
|
@ -394,8 +395,8 @@ export default {
|
||||||
|
|
||||||
checkedKeys: [], // 选中的树节点
|
checkedKeys: [], // 选中的树节点
|
||||||
|
|
||||||
filterList, // 筛选类型列表
|
filterList: cloneDeep(filterList), // 筛选类型列表
|
||||||
dataQualityList, // 数据质量列表
|
dataQualityList: cloneDeep(dataQualityList), // 数据质量列表
|
||||||
|
|
||||||
radius: 5000, // 距离
|
radius: 5000, // 距离
|
||||||
dataSource: [], // Infomation Radius 表格数据源
|
dataSource: [], // Infomation Radius 表格数据源
|
||||||
|
|
Loading…
Reference in New Issue
Block a user