refactor(项目设置): 应用管理显示优化

--user=郭雨琦
This commit is contained in:
guoyuqi 2022-08-04 13:23:03 +08:00 committed by xiaomeinvG
parent 3e85bed1c0
commit c9222c38cf
1 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
<div v-loading="result.loading">
<el-card class="table-card">
<el-tabs v-model="activeName" style="height: 600px">
<el-tab-pane :label="$t('commons.my_workstation')" name="my_workstation">
<el-tab-pane :label="$t('commons.my_workstation')" name="my_workstation" v-if="isXpack">
<el-row style="margin-top: 10px">
<span style="font-weight:bold">{{ this.$t('commons.enable_settings') }}</span>
</el-row>
@ -117,7 +117,7 @@
</el-tab-pane>
<!-- UI 测试 -->
<el-tab-pane v-if="isXpack" :label="$t('commons.ui_test')" name="ui_test">
<el-tab-pane :label="$t('commons.ui_test')" name="ui_test">
<el-row style="margin-top: 10px">
<span style="font-weight:bold">{{ $t('commons.view_settings') }}</span>
</el-row>
@ -126,10 +126,10 @@
:append-span="12" :prepend-span="12" :middle-span="0">
<template #append>
<el-radio-group v-model="config.uiQuickMenu" @change="switchChange('UI_QUICK_MENU', $event)">
<el-radio label="local" value="local">
<el-radio label="local" value="local" :disabled="!isXpack">
{{ $t('ui.ui_local_debug') }}
</el-radio>
<el-radio label="server" value="server">
<el-radio label="server" value="server" :disabled="!isXpack">
{{ $t('ui.ui_server_debug') }}
</el-radio>
</el-radio-group>