|
@@ -50,12 +50,12 @@
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
<!-- 编辑平面图 -->
|
|
|
- <el-tooltip v-if='editPmt' class='item' effect='dark' content='编辑平面图' placement='left'>
|
|
|
+ <el-tooltip @click='goToEditer' v-if='editPmt' class='item' effect='dark' content='编辑平面图' placement='left'>
|
|
|
<span class='edit-icon'>
|
|
|
<a-icon type='edit' style='color:#fff' />
|
|
|
</span>
|
|
|
</el-tooltip>
|
|
|
- <span v-else class='edit-icon2'>
|
|
|
+ <span v-else @click='goToEditer' class='edit-icon2'>
|
|
|
<a-icon type='edit' style='color:#fff' />
|
|
|
</span>
|
|
|
<legend-remarks @queryMarks='queryMarks' ref='EditdMarks'></legend-remarks>
|
|
@@ -151,6 +151,16 @@ export default {
|
|
|
this.show2 = true
|
|
|
this.queryEditNum(true)
|
|
|
},
|
|
|
+ /**
|
|
|
+ * @name goToEditer
|
|
|
+ * @description t跳转editer编辑器
|
|
|
+ */
|
|
|
+ goToEditer() {
|
|
|
+ const { conf } = window.__systemConf,
|
|
|
+ { editerUrl } = conf
|
|
|
+
|
|
|
+ window.open(editerUrl + 'editer?projectId=1111&projectName=万达广场', true)
|
|
|
+ },
|
|
|
isShow2() {
|
|
|
console.log(this.isShow2)
|
|
|
this.show2 = !this.show2
|