Browse Source

[fix-3553][ui]Repair click workflow connection, select the entire path

pull/3/MERGE
break60 4 years ago
parent
commit
5ee2c13884
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue
  2. 4
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/plugIn/util.js

2
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue

@ -184,7 +184,6 @@
], ],
Connector: 'Bezier', Connector: 'Bezier',
PaintStyle: { lineWidth: 2, stroke: '#456' }, // Connection style PaintStyle: { lineWidth: 2, stroke: '#456' }, // Connection style
HoverPaintStyle: {stroke: '#ccc', strokeWidth: 3},
ConnectionOverlays: [ ConnectionOverlays: [
[ [
'Arrow', 'Arrow',
@ -623,7 +622,6 @@
], ],
Connector: 'Bezier', Connector: 'Bezier',
PaintStyle: { lineWidth: 2, stroke: '#456' }, // Connection style PaintStyle: { lineWidth: 2, stroke: '#456' }, // Connection style
HoverPaintStyle: {stroke: '#ccc', strokeWidth: 3},
ConnectionOverlays: [ ConnectionOverlays: [
[ [
'Arrow', 'Arrow',

4
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/plugIn/util.js

@ -101,13 +101,13 @@ const setSvgColor = (e, color) => {
// Traverse clear all colors // Traverse clear all colors
$('.jtk-connector').each((i, o) => { $('.jtk-connector').each((i, o) => {
_.map($(o)[0].childNodes, v => { _.map($(o)[0].childNodes, v => {
$(v).attr('fill', '#2d8cf0').attr('stroke', '#2d8cf0').attr('stroke-width', 2) $(v).attr('stroke', '#2d8cf0').attr('stroke-width', 2)
}) })
}) })
// Add color to the selection // Add color to the selection
_.map($(e.canvas)[0].childNodes, (v, i) => { _.map($(e.canvas)[0].childNodes, (v, i) => {
$(v).attr('fill', color).attr('stroke', color) $(v).attr('stroke', '#ccc')
if ($(v).attr('class')) { if ($(v).attr('class')) {
$(v).attr('stroke-width', 2) $(v).attr('stroke-width', 2)
} }

Loading…
Cancel
Save