Skip to content

Commit 5d8e865

Browse files
author
张晨曦
committed
Merge branch 'hotfix/20211202' of https://10.30.90.89:39999/luban/dataspherestudio into fixbug-dataGovernance
2 parents 96b39c2 + 72d8555 commit 5d8e865

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

web/src/apps/dataGovernance/view/assetsInfo/components/lineage/index.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ export default {
2222
required: true
2323
}
2424
},
25+
watch: {
26+
lineageData() {
27+
this.createOrUpdateCanvas(this.convertData())
28+
}
29+
},
2530
methods: {
2631
convertData() {
2732
let data = {
@@ -93,7 +98,7 @@ export default {
9398
})
9499
this.canvas.draw(data);
95100
} else {
96-
this.canvas.drageReDraw(data);
101+
this.canvas.redraw(data);
97102
}
98103
}
99104
},

web/src/apps/workflows/module/dispatch/index.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,8 @@ export default {
923923
startData: {},
924924
timingData: {
925925
item: {},
926-
type: ''
926+
type: '',
927+
id: ''
927928
},
928929
pagination: {
929930
size: 10,
@@ -1142,6 +1143,7 @@ export default {
11421143
tempData.type = 'timing'
11431144
id = this.list[index].id
11441145
}
1146+
this.timingData.id = id
11451147
this.getReceiver(id, (res) => {
11461148
this.timingData.item = {
11471149
...tempData.item,
@@ -1278,7 +1280,8 @@ export default {
12781280
closeRun() {
12791281
this.showRunTaskModal = false
12801282
},
1281-
setTiming() {
1283+
setTiming(id) {
1284+
this.schedulerId = id
12821285
this.showTimingTaskModal = false
12831286
this.activeList(3)
12841287
},

web/src/apps/workflows/module/dispatch/timing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ export default {
320320
321321
this.api.fetch(api, searchParams, {useFormQuery: true}).then(res => {
322322
this.$Message.success(msg)
323-
this.$emit('onUpdateTiming')
323+
this.$emit('onUpdateTiming', this.timingData.id)
324324
})
325325
}
326326
},

web/vue.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ module.exports = {
258258
}
259259
},
260260
"/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",
263263
changeOrigin: true,
264264
pathRewrite: {
265265
"^/dolphinscheduler": "/dolphinscheduler"

0 commit comments

Comments
 (0)