diff --git a/web/src/components/gva-wfd/behavior/deleteItem.js b/web/src/components/gva-wfd/behavior/deleteItem.js
index 273d0fd7..0cfc5b17 100644
--- a/web/src/components/gva-wfd/behavior/deleteItem.js
+++ b/web/src/components/gva-wfd/behavior/deleteItem.js
@@ -11,6 +11,7 @@ export default function(G6) {
onKeydown(e) {
const items = this.graph.get('selectedItems');
const focus = this.graph.get('focusGraphWrapper');
+ console.log(e.keyCode)
if (e.keyCode === 46 && items && items.length > 0 && focus) {
if (this.graph.executeCommand) {
this.graph.executeCommand('delete', {});
@@ -31,9 +32,19 @@ export default function(G6) {
if (this.graph.executeCommand) {
this.graph.executeCommand('redo', {});
}
-
}
-
+ if (e.ctrlKey == true && e.keyCode == 67) { //Ctrl+c
+ e.returnvalue = false;
+ if (this.graph.executeCommand) {
+ this.graph.executeCommand('copy', {});
+ }
+ }
+ if (e.ctrlKey == true && e.keyCode == 86) { //Ctrl+v
+ e.returnvalue = false;
+ if (this.graph.executeCommand) {
+ this.graph.executeCommand('paste', {});
+ }
+ }
},
onCanvasLeave(e) {
this.graph.set('focusGraphWrapper', false);
diff --git a/web/src/view/workflow/workflowCreate/workflowCreate.vue b/web/src/view/workflow/workflowCreate/workflowCreate.vue
index 8cfe04ab..5b1f5f6b 100644
--- a/web/src/view/workflow/workflowCreate/workflowCreate.vue
+++ b/web/src/view/workflow/workflowCreate/workflowCreate.vue
@@ -1,58 +1,266 @@
-
导出XML
-
导出图片
-
保存流程
-
+
导出XML
+
导出图片
+
+ 确认流程无误并保存吗
+
+ 取消
+ 确定
+
+ 保存流程
+
+
+
\ No newline at end of file