Commit 1ea22c3f82f8eb51b1d9bfe90f336b86ffe2d535
1 parent
a2f6aec1
1、鼠标批量移动
Showing
1 changed file
with
9 additions
and
9 deletions
src/views/bigscreenDesigner/designer/index.vue
| ... | ... | @@ -1307,15 +1307,15 @@ export default { |
| 1307 | 1307 | // 多选复制 |
| 1308 | 1308 | copylayer() { |
| 1309 | 1309 | //首先复制右选节点,再复制其他选择节点 |
| 1310 | - // this.copylayerOne(this.rightClickIndex) | |
| 1311 | - if(this.isNotBlankArray(this.selectMore)){ | |
| 1312 | - for(let i = 0; i< this.selectMore.length;i++){ | |
| 1313 | - const copyIndex = this.selectMore[i]; | |
| 1314 | - if(this.rightClickIndex != copyIndex){ | |
| 1315 | - this.copylayerOne(copyIndex); | |
| 1316 | - } | |
| 1317 | - } | |
| 1318 | - } | |
| 1310 | + this.copylayerOne(this.rightClickIndex) | |
| 1311 | + // if(this.isNotBlankArray(this.selectMore)){ | |
| 1312 | + // for(let i = 0; i< this.selectMore.length;i++){ | |
| 1313 | + // const copyIndex = this.selectMore[i]; | |
| 1314 | + // if(this.rightClickIndex != copyIndex){ | |
| 1315 | + // this.copylayerOne(copyIndex); | |
| 1316 | + // } | |
| 1317 | + // } | |
| 1318 | + // } | |
| 1319 | 1319 | }, // 多选复制 |
| 1320 | 1320 | copylayerAll() { |
| 1321 | 1321 | //首先复制右选节点,再复制其他选择节点 | ... | ... |