|
@@ -31,10 +31,11 @@ import { SCustomLegendItem } from '@/lib/items/SCustomLegendItem';
|
|
|
*
|
|
|
* @author 韩耀龙
|
|
|
*/
|
|
|
-
|
|
|
export class EditScence extends SGraphScene {
|
|
|
|
|
|
undoStack = new SUndoStack();
|
|
|
+ /** 判断是否为苹果电脑 */
|
|
|
+ public isMac = /macintosh|mac os x/i.test(navigator.userAgent);
|
|
|
/** 命令 1 绘制直线 */
|
|
|
private cmd = 'choice';
|
|
|
/** 获取当前状态 */
|
|
@@ -99,7 +100,8 @@ export class EditScence extends SGraphScene {
|
|
|
ItemColor.columnColor = new SColor("#d4d4d4")
|
|
|
ItemColor.virtualWallColor = new SColor("#d4d4d4")
|
|
|
ItemColor.selectColor = new SColor("#f0f0f0")
|
|
|
- ItemColor.spaceBorderColor = new SColor("#d4d4d4")
|
|
|
+ ItemColor.spaceBorderColor = new SColor("#d4d4d4");
|
|
|
+ console.log('isMac',this.isMac)
|
|
|
}
|
|
|
/** 绘制图例样式 */
|
|
|
_legend: any | null = null;
|
|
@@ -1130,8 +1132,12 @@ export class EditScence extends SGraphScene {
|
|
|
if (event.code == 'Delete') {
|
|
|
this.deleiteItem()
|
|
|
}
|
|
|
+ // 删除键功能--兼容苹果mac
|
|
|
+ if (event.code == 'Backspace' && this.isMac){
|
|
|
+ this.deleiteItem()
|
|
|
+ }
|
|
|
// 复制粘贴
|
|
|
- if (event.ctrlKey && !event.repeat) {
|
|
|
+ if (event.ctrlKey && !event.repeat) {
|
|
|
if (event.code == 'KeyC') {
|
|
|
console.log('ctrl c')
|
|
|
this.copy()
|
|
@@ -1175,7 +1181,7 @@ export class EditScence extends SGraphScene {
|
|
|
console.log(this.copyString)
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 粘贴
|
|
|
*
|