|
@@ -66,7 +66,7 @@
|
|
|
<!-- <div class="fileBtnicon fileDel"></div> -->
|
|
|
<div class="fileBtnicon fileHide" @click="showImageTranform1 = !showImageTranform1"></div>
|
|
|
<div class="fileBtnicon fileSave" @click="getImageTransform"></div>
|
|
|
- <div class="fileBtnicon fileSave" @click="getImageTiled"></div>
|
|
|
+ <!-- <div class="fileBtnicon fileSave" @click="getImageTiled"></div> -->
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
@@ -340,7 +340,10 @@
|
|
|
getImageTransform() {
|
|
|
|
|
|
// 地图数据上传 如果用户没有选择数据直接返回true 如果有数据要上传返回promise
|
|
|
- this.$refs.imageTranform.uploadData()
|
|
|
+ Promise.all([
|
|
|
+ this.$refs.imageTranform.uploadData(),
|
|
|
+ this.$refs.imageTranform.uploadTiled()
|
|
|
+ ])
|
|
|
.then(res => {
|
|
|
alert('成功')
|
|
|
this.showImageTranform = false
|