diff --git a/src/components/Canvas/FlowCanvas/components/nodes/result-image.vue b/src/components/Canvas/FlowCanvas/components/nodes/result-image.vue index 736ebc8..88c5c2a 100644 --- a/src/components/Canvas/FlowCanvas/components/nodes/result-image.vue +++ b/src/components/Canvas/FlowCanvas/components/nodes/result-image.vue @@ -71,8 +71,8 @@ disabled: !!props.config?.disableDelete }, { isDivide: true }, - { label: 'Bring to font', tip: '', on: () => {} }, - { label: 'Send to back', tip: '', on: () => {} }, + { label: 'Bring to font', tip: '', on: () => {emit('bring-to-font')} }, + { label: 'Send to back', tip: '', on: () => {emit('send-to-back')} }, { isDivide: true }, { label: 'Flip horizontal', tip: '', on: () => {data.scale.x = -data.scale.x; emit('update-data',data)} }, { label: 'Flip vertical', tip: '', on: () => {data.scale.y = -data.scale.y; emit('update-data',data)} }