Merge pull request #8391 from dataease/pr@dev@perf_hide_proxy_setting

perf(系统配置): 隐藏代理设置
This commit is contained in:
fit2cloud-chenyw 2024-03-06 21:57:37 +08:00 committed by GitHub
commit 45111d9f6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@
/>
<el-tab-pane
v-if="isPluginLoaded"
v-if="isPluginLoaded && showProxy"
lazy
:label="$t('system_parameter_setting.proxy_setting')"
name="nine"
@ -104,7 +104,8 @@ export default {
return {
activeName: 'zero',
isPluginLoaded: false,
engineMode: 'local'
engineMode: 'local',
showProxy: false
}
},
beforeCreate() {