File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed
dataGovernance/view/assetsInfo/components/lineage
workflows/module/dispatch Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ export default {
22
22
required: true
23
23
}
24
24
},
25
+ watch: {
26
+ lineageData () {
27
+ this .createOrUpdateCanvas (this .convertData ())
28
+ }
29
+ },
25
30
methods: {
26
31
convertData () {
27
32
let data = {
@@ -93,7 +98,7 @@ export default {
93
98
})
94
99
this .canvas .draw (data);
95
100
} else {
96
- this .canvas .drageReDraw (data);
101
+ this .canvas .redraw (data);
97
102
}
98
103
}
99
104
},
Original file line number Diff line number Diff line change @@ -923,7 +923,8 @@ export default {
923
923
startData: {},
924
924
timingData: {
925
925
item: {},
926
- type: ' '
926
+ type: ' ' ,
927
+ id: ' '
927
928
},
928
929
pagination: {
929
930
size: 10 ,
@@ -1142,6 +1143,7 @@ export default {
1142
1143
tempData .type = ' timing'
1143
1144
id = this .list [index].id
1144
1145
}
1146
+ this .timingData .id = id
1145
1147
this .getReceiver (id, (res ) => {
1146
1148
this .timingData .item = {
1147
1149
... tempData .item ,
@@ -1278,7 +1280,8 @@ export default {
1278
1280
closeRun () {
1279
1281
this .showRunTaskModal = false
1280
1282
},
1281
- setTiming () {
1283
+ setTiming (id ) {
1284
+ this .schedulerId = id
1282
1285
this .showTimingTaskModal = false
1283
1286
this .activeList (3 )
1284
1287
},
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ export default {
320
320
321
321
this .api .fetch (api, searchParams, {useFormQuery: true }).then (res => {
322
322
this .$Message .success (msg)
323
- this .$emit (' onUpdateTiming' )
323
+ this .$emit (' onUpdateTiming' , this . timingData . id )
324
324
})
325
325
}
326
326
},
Original file line number Diff line number Diff line change @@ -258,8 +258,8 @@ module.exports = {
258
258
}
259
259
} ,
260
260
"/dolphinscheduler" : {
261
- target : "http://***REMOVED***:12345" ,
262
- // target: "https://dolphin.ctyun.cn:10002",
261
+ // target: "http://***REMOVED***:12345",
262
+ target : "https://dolphin.ctyun.cn:10002" ,
263
263
changeOrigin : true ,
264
264
pathRewrite : {
265
265
"^/dolphinscheduler" : "/dolphinscheduler"
You can’t perform that action at this time.
0 commit comments