|
@@ -4,7 +4,7 @@
|
4
|
4
|
<img :src="headImg" alt="" />
|
5
|
5
|
</div>
|
6
|
6
|
<el-container>
|
7
|
|
- <Left></Left>
|
|
7
|
+ <Left @childMethod="childMethod"></Left>
|
8
|
8
|
<right></right>
|
9
|
9
|
<div ref="linedomRef" style="width:1px;height:1px;position: absolute;z-index: 228;background:#ccc;">
|
10
|
10
|
</div>
|
|
@@ -194,6 +194,18 @@ export default ({
|
194
|
194
|
clickData1.value.y = e.clientY;
|
195
|
195
|
}
|
196
|
196
|
|
|
197
|
+
|
|
198
|
+ //消失线的方法
|
|
199
|
+ const childMethod =()=>{
|
|
200
|
+
|
|
201
|
+ if (lineContainer.value) {
|
|
202
|
+ lineContainer.value.remove()
|
|
203
|
+ lineContainer.value = null
|
|
204
|
+ }
|
|
205
|
+ }
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
197
|
209
|
const handleResponseFunction = (data) => {
|
198
|
210
|
console.log("从UE返回过来的值", data)
|
199
|
211
|
if (data == "{isrotate}") {
|
|
@@ -334,6 +346,7 @@ export default ({
|
334
|
346
|
headImg,
|
335
|
347
|
titleDialog,
|
336
|
348
|
orientation,
|
|
349
|
+ childMethod
|
337
|
350
|
|
338
|
351
|
}
|
339
|
352
|
},
|