Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
ed87cd67
authored
2020-12-10 11:00:44 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
61205961
3f9a05d3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
src/components/lineTree/lineTree.vue
src/components/lineTree/tx/importGeo.vue
src/components/lineTree/lineTree.vue
View file @
ed87cd6
...
...
@@ -102,7 +102,7 @@
</ul>
<el-dialog
title=
"导入图形"
:visible
.
sync=
"improtDialog"
>
<import-geo
:property-info=
"zdData
"
:geo-info=
"currentClickZdGeo"
@
closeImportDialog=
"closeImportDialog"
></import-geo>
<import-geo
:property-info=
"zdData"
:timeLine=
"new Date().getTime()
"
:geo-info=
"currentClickZdGeo"
@
closeImportDialog=
"closeImportDialog"
></import-geo>
</el-dialog>
<!-- 添加定着物弹框 -->
<el-dialog
title=
"新建"
:visible
.
sync=
"dialogVisible"
width=
"48%"
>
...
...
src/components/lineTree/tx/importGeo.vue
View file @
ed87cd6
...
...
@@ -138,6 +138,10 @@ export default {
geoInfo
:{
type
:
Object
,
default
:
null
},
timeLine
:{
type
:
Number
,
default
:
null
}
},
mixins
:[
geoUtils
,
featureUpdate
],
...
...
@@ -156,6 +160,15 @@ export default {
}
}
},
mounted
(){
},
watch
:{
timeLine
(
newValue
,
oldValue
){
this
.
resultDialog
=
false
;
this
.
txtResultDialog
=
false
;
}
},
methods
:{
txtFileChange
(
file
,
fileList
){
var
self
=
this
;
...
...
Please
register
or
sign in
to post a comment