File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
src/apps/workflows/module/dispatch Expand file tree Collapse file tree 3 files changed +10
-7
lines changed 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 @@ -247,19 +247,19 @@ module.exports = {
247
247
devServer : {
248
248
proxy : {
249
249
"/api" : {
250
- target : "http://***REMOVED***:8088" ,
250
+ // target: "http://***REMOVED***:8088",
251
251
//target: 'http://***REMOVED***:9202', //yichao
252
252
// target: "http://***REMOVED***:9202", //jiawei
253
- // target: "http://luban.ctyun.cn:8088",
253
+ target : "http://luban.ctyun.cn:8088" ,
254
254
//target: "http://devluban.ctyun.cn:8088",
255
255
changeOrigin : true ,
256
256
pathRewrite : {
257
257
"^/api" : "/api"
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