File tree Expand file tree Collapse file tree 6 files changed +16
-11
lines changed
shared/components/dynamicForm
workspace/module/management Expand file tree Collapse file tree 6 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 55
55
"en" : " dolphinScheduler/i18n/en.json" ,
56
56
"zh-CN" : " dolphinScheduler/i18n/zh.json"
57
57
}
58
+ },
59
+ "sparketl" : {
60
+ "routes" : " sparketl/router/index" ,
61
+ "i18n" : {
62
+ "en" : " sparketl/utils/i18n/zh.json" ,
63
+ "zh-CN" : " sparketl/utils/i18n/zh.json"
64
+ }
58
65
}
59
66
},
60
67
"exts" : {
81
88
"template" : " ${username} ${time}" ,
82
89
"timeupdate" : 60000
83
90
},
84
- "env" : " opensource"
91
+ "has_engineinfo" : false ,
92
+ "showVersionDiff" : false ,
93
+ "showScirptVarHelp" : false
85
94
},
86
95
"version" : " 1.1.12"
87
96
}
Original file line number Diff line number Diff line change 23
23
"template" : " ${username} ${time}" ,
24
24
"timeupdate" : 60000
25
25
},
26
- "update_chrome" : " /_book/知识库/DSS常见问题/其他/DSS使用推荐的浏览器版本.html" ,
27
- "lsp_service" : {
28
- "sql" : " ${protocol}//${host}/server" ,
29
- "py" : " ${protocol}//${host}/python"
30
- }
26
+ "update_chrome" : " /_book/知识库/DSS常见问题/其他/DSS使用推荐的浏览器版本.html"
31
27
},
32
28
"version" : " 1.1.12"
33
29
}
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ export default {
264
264
toggleShow (e ) {
265
265
const item = e .target .innerText
266
266
const overDb = e .target .className .indexOf (' fi-hivedb' ) > - 1
267
- if ( overDb && ! this .dbnameDesc [item] && this .$APP_CONF && this .$APP_CONF .env === ' webank ' ) {
267
+ if ( overDb && ! this .dbnameDesc [item] && this .$APP_CONF && ! this .$APP_CONF .hide_view_db_detail ) {
268
268
// mouseover 在数据库项上且未获取描述信息
269
269
clearTimeout (this .fetchDbInfo )
270
270
this .fetchDbInfo = setTimeout (() => {
Original file line number Diff line number Diff line change 2
2
<div class =" dynamic-form" >
3
3
<div class =" dynamic-form-header-wrap" >
4
4
<h4 class =" dynamic-form-header-title" >{{ title }}</h4 >
5
- <a target =" _blank" href =" /_book/知识库/用户手册/Scriptis/变量管理.html" >{{ $t('message.common.Help') }}</a >
5
+ <a v-if = " $APP_CONF && $APP_CONF.showScirptVarHelp !== false " target =" _blank" href =" /_book/知识库/用户手册/Scriptis/变量管理.html" >{{ $t('message.common.Help') }}</a >
6
6
</div >
7
7
<Form ref =" dynamicForm" :model =" formDynamic" class =" dynamic-form-content" >
8
8
<FormItem v-for =" (item, index) in formDynamic.list" :key =" index" >
Original file line number Diff line number Diff line change 294
294
</Form >
295
295
<div slot =" footer" >
296
296
<Button
297
- v-if =" $APP_CONF && $APP_CONF.env === 'webank' "
297
+ v-if =" $APP_CONF && $APP_CONF.showVersionDiff !== false "
298
298
@click =" showDiff" >{{$t('message.workflow.showVersionDiff')}}</Button >
299
299
<Button
300
300
type =" primary"
@@ -2228,7 +2228,7 @@ export default {
2228
2228
}
2229
2229
this .timer = setTimeout (() => {
2230
2230
timeoutValue += 2000 ;
2231
- getPublishStatus (+ id, this .getCurrentDsslabels ()).then ((res ) => {
2231
+ getPublishStatus (id, this .getCurrentDsslabels ()).then ((res ) => {
2232
2232
if (timeoutValue <= (10 * 60 * 1000 )) {
2233
2233
if (res .status === ' init' || res .status === ' running' ) {
2234
2234
clearTimeout (this .timer );
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export default {
63
63
// children: [],
64
64
// },
65
65
];
66
- if (this .$APP_CONF && this .$APP_CONF .env === ' webank ' ) {
66
+ if (this .$APP_CONF && this .$APP_CONF .has_engineinfo !== false ) {
67
67
manageMenus .push ({
68
68
icon: ' engineinfo' ,
69
69
name: i18n .t (' message.workspaceManagement.engineInfo' ),
You can’t perform that action at this time.
0 commit comments