|
@@ -758,18 +758,22 @@ export default {
|
|
|
bus.$on("itemAngle", ang => {
|
|
|
this.scene.updateItemAng(ang);
|
|
|
}),
|
|
|
- // 更改item样式
|
|
|
- bus.$on("changeLengendItem", item => {
|
|
|
- this.scene.changeLengendItem(item);
|
|
|
- }),
|
|
|
- //复制操作
|
|
|
- bus.$on("copymsg", () => {
|
|
|
- this.scene.copy();
|
|
|
- });
|
|
|
+ // 更改item样式
|
|
|
+ bus.$on("changeLengendItem", item => {
|
|
|
+ this.scene.changeLengendItem(item);
|
|
|
+ }),
|
|
|
+ //复制操作
|
|
|
+ bus.$on("copymsg", () => {
|
|
|
+ this.scene.copy();
|
|
|
+ });
|
|
|
//粘贴操作
|
|
|
bus.$on("stickmsg", () => {
|
|
|
this.scene.paste();
|
|
|
});
|
|
|
+ //选中同类
|
|
|
+ bus.$on("selectSimilar", () => {
|
|
|
+ this.scene.selectSimilar();
|
|
|
+ });
|
|
|
},
|
|
|
// 获取图最大最小值
|
|
|
getGraphDetail() {
|