Merge pull request #2507 from dataease/pr@dev@fix_filter_dialog_text

fix: 过滤器弹框文字精简
This commit is contained in:
fit2cloud-chenyw 2022-06-27 10:10:51 +08:00 committed by GitHub
commit 4f8948c020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 13 deletions

View File

@ -1623,7 +1623,7 @@ export default {
select_by_table: 'Select by table', select_by_table: 'Select by table',
data_list: 'Data list', data_list: 'Data list',
component_list: 'Component list', component_list: 'Component list',
custom_scope: 'Custom control range', custom_scope: 'Target',
multiple_choice: 'Multiple choice', multiple_choice: 'Multiple choice',
single_choice: 'Single choice', single_choice: 'Single choice',
field: 'Field', field: 'Field',
@ -1750,10 +1750,11 @@ export default {
component_hidden: 'Component Hidden', 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', 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', input_title: 'Input Title',
show_title: 'Show Title', show_title: 'Title',
default_settings: 'Default Settings', default_settings: 'Default Settings',
choose_background: 'Choose Component Background', 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: { plugin: {
local_install: 'Local installation', local_install: 'Local installation',

View File

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

View File

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

View File

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