|
@@ -109,7 +109,7 @@ export default defineComponent({
|
|
const state = reactive({
|
|
const state = reactive({
|
|
selectParams: {
|
|
selectParams: {
|
|
type: '',
|
|
type: '',
|
|
- wkt: '22'
|
|
|
|
|
|
+ wkt: ''
|
|
},
|
|
},
|
|
result: {
|
|
result: {
|
|
form: {},
|
|
form: {},
|
|
@@ -143,7 +143,7 @@ export default defineComponent({
|
|
}
|
|
}
|
|
const mapDraw = (type) => {
|
|
const mapDraw = (type) => {
|
|
props.mapFunc.draw(type).then(({feature, wkt}) => {
|
|
props.mapFunc.draw(type).then(({feature, wkt}) => {
|
|
- state.selectParams.type === type
|
|
|
|
|
|
+ state.selectParams.type = type
|
|
state.selectParams.wkt = wkt
|
|
state.selectParams.wkt = wkt
|
|
initData()
|
|
initData()
|
|
}).catch(() => {})
|
|
}).catch(() => {})
|
|
@@ -202,7 +202,6 @@ export default defineComponent({
|
|
onSearch()
|
|
onSearch()
|
|
}
|
|
}
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
- initData()
|
|
|
|
state.result.form = JSON.parse(JSON.stringify(state.result.tempForm))
|
|
state.result.form = JSON.parse(JSON.stringify(state.result.tempForm))
|
|
})
|
|
})
|
|
return {
|
|
return {
|
|
@@ -262,7 +261,7 @@ export default defineComponent({
|
|
>img {
|
|
>img {
|
|
margin-right: 8px;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
- &:hover {
|
|
|
|
|
|
+ &.active {
|
|
color: #1174DB;
|
|
color: #1174DB;
|
|
}
|
|
}
|
|
}
|
|
}
|