|
@@ -349,7 +349,7 @@
|
|
|
</a-collapse-panel>
|
|
|
</a-collapse>
|
|
|
</div>
|
|
|
- <editDialog ref="dialog" :attrCards="attrCards" :GraphElementId="GraphElementId" :InfoLocal="InfoLocal" :sysNum="imageNum" :key="new Date().getTime()" />
|
|
|
+ <editDialog ref="dialog" :attrCards="attrCards" :GraphElementId="GraphElementId" :InfoLocal="InfoLocal" :sysNum="imageNum" :key="keys" />
|
|
|
<!-- <editDialog ref="dialog" :attrCards="attrCards" :getmajorId="getmajorId" :InfoLocal="InfoLocal" :sysNum="imageNum" :key="new Date().getTime()" />-->
|
|
|
<!-- <editDialog ref="dialog" :typeEdit="2" :getmajorId="'1001'" :sysNum="5" />-->
|
|
|
</div>
|
|
@@ -475,6 +475,7 @@ export default {
|
|
|
GraphElementId:'',//图例Id
|
|
|
CUSTOMbgColor: 'rgba(0,0,0,0.15)', // 自定义多边形背景色
|
|
|
CUSTOMbdColor: 'rgba(0,0,0,1)', // 自定义多边形线条色
|
|
|
+ keys:new Date().getTime()
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -558,7 +559,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
handleEdit() {
|
|
|
- this.$refs.dialog.showModal();
|
|
|
+ this.keys = new Date().getTime()
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.$refs.dialog.showModal();
|
|
|
+ })
|
|
|
},
|
|
|
// 修改设备数量
|
|
|
changeImageNum() {
|