File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/apps/dataGovernance/module/dataGovernance Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -114,17 +114,18 @@ export default {
114
114
115
115
const removeAction = () => {
116
116
if (that .currentTab .guid === modal .guid ) {
117
- const { guid } = that .currentTab ;
118
117
const workspaceId = that .$route .query .workspaceId ;
119
118
if (len > 1 && idx < len - 1 ) {
120
119
that .currentTab = topTapList[idx + 1 ];
120
+ let guid = that .currentTab .guid ;
121
121
that .$router .push ({
122
122
name: " dataGovernance/assets/info" ,
123
123
params: { guid },
124
124
query: { workspaceId }
125
125
});
126
126
} else if (len > 1 && idx == len - 1 ) {
127
127
that .currentTab = topTapList[idx - 1 ];
128
+ let guid = that .currentTab .guid ;
128
129
that .$router .push ({
129
130
name: " dataGovernance/assets/info" ,
130
131
params: { guid },
Original file line number Diff line number Diff line change @@ -247,10 +247,10 @@ 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 : {
You can’t perform that action at this time.
0 commit comments