fix: 过滤器弹框文字精简

This commit is contained in:
fit2cloud-chenyw 2022-06-27 10:09:35 +08:00
parent 85577fe513
commit 912c73bdab
4 changed files with 15 additions and 13 deletions

View File

@ -1595,7 +1595,7 @@ export default {
select_by_table: 'Select by table',
data_list: 'Data list',
component_list: 'Component list',
custom_scope: 'Custom control range',
custom_scope: 'Target',
multiple_choice: 'Multiple choice',
single_choice: 'Single choice',
field: 'Field',
@ -1722,10 +1722,11 @@ export default {
component_hidden: 'Component Hidden',
public_link_tips: 'Currently in public link mode, the target panel does not have a public link and cannot jump to it',
input_title: 'Input Title',
show_title: 'Show Title',
show_title: 'Title',
default_settings: 'Default Settings',
choose_background: 'Choose Component Background',
choose_background_tips: 'The component`s own background settings will overwrite the current settings'
choose_background_tips: 'The component`s own background settings will overwrite the current settings',
visual: 'Visual'
},
plugin: {
local_install: 'Local installation',

View File

@ -1596,7 +1596,7 @@ export default {
select_by_table: '按錶選擇',
data_list: '數據列錶',
component_list: '組件列錶',
custom_scope: '自定義控製範圍',
custom_scope: '控製範圍',
multiple_choice: '多選',
single_choice: '單選',
field: '字段',
@ -1723,13 +1723,14 @@ export default {
component_hidden: '隱藏的組件',
public_link_tips: '當前是公共鏈接模式,目標儀錶闆未設置公共鏈接,無法跳轉',
input_title: '請輸入標題',
show_title: '顯示標題',
show_title: '標題',
default_settings: '默認值設置',
choose_background: '選擇組件背景',
choose_background_tips: '組件自有的背景設置會覆蓋當前設置',
setting_background: '設置背景',
setting_jump: '跳轉設置',
select_view: '請選擇視圖...'
select_view: '請選擇視圖...',
visual: '虛擬化'
},
plugin: {
local_install: '本地安裝',

View File

@ -1603,8 +1603,8 @@ export default {
select_by_table: '按表选择',
data_list: '数据列表',
component_list: '组件列表',
custom_scope: '自定义控制范围',
binding_parameters: '绑定参数',
custom_scope: '控制范围',
binding_parameters: '参数',
multiple_choice: '多选',
single_choice: '单选',
field: '字段',
@ -1732,13 +1732,14 @@ export default {
component_hidden: '隐藏的组件',
public_link_tips: '当前是公共链接模式,目标仪表板未设置公共链接,无法跳转',
input_title: '请输入标题',
show_title: '显示标题',
show_title: '标题',
default_settings: '默认值设置',
choose_background: '选择组件背景',
choose_background_tips: '组件自有的背景设置会覆盖当前设置',
setting_background: '设置背景',
setting_jump: '跳转设置',
select_view: '请选择视图...'
select_view: '请选择视图...',
visual: '虚拟化'
},
plugin: {
local_install: '本地安装',

View File

@ -6,12 +6,11 @@
v-if="widget.showSwitch"
v-model="attrs.multiple"
:active-text="$t('panel.multiple_choice')"
:inactive-text="$t('panel.single_choice')"
@change="multipleChange"
/>
<span v-if="widget.showVisual" style="padding-left: 20px;">
<el-checkbox v-model="attrs.visual" @change="showVisualChange">虚拟化</el-checkbox>
<span v-if="widget.showVisual" style="padding-left: 16px;">
<el-checkbox v-model="attrs.visual" @change="showVisualChange">{{ $t('panel.visual') }}</el-checkbox>
</span>
</div>
</el-col>