mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 11:32:57 +08:00
feat: 重复的数据源连接,保存时增加提示
This commit is contained in:
parent
18c957cee1
commit
b3f5426e91
@ -1502,7 +1502,10 @@ export default {
|
||||
timeout_refresh: 'Timeout,Will Refresh...',
|
||||
mobile_layout: 'Mobile Layout',
|
||||
component_hidden: 'Component Hidden',
|
||||
public_link_tips: 'New Is Public Link,The Target Panel Have Not Set Public Link,Can Not Jump'
|
||||
public_link_tips: 'New Is Public Link,The Target Panel Have Not Set Public Link,Can Not Jump',
|
||||
input_title: 'Input Title',
|
||||
show_title: 'Show Title',
|
||||
default_settings: 'Default Settings'
|
||||
},
|
||||
plugin: {
|
||||
local_install: 'Local installation',
|
||||
|
@ -13,6 +13,8 @@ import fuZh from 'fit2cloud-ui/src/locale/lang/zh-CN' // 加载fit2cloud的内
|
||||
|
||||
import fuEn from 'fit2cloud-ui/src/locale/lang/en_US' // 加载fit2cloud的内容
|
||||
|
||||
import fuTW from 'fit2cloud-ui/src/locale/lang/zh-TW' // 加载fit2cloud的内容
|
||||
|
||||
Vue.use(VueI18n)
|
||||
|
||||
const messages = {
|
||||
@ -28,7 +30,8 @@ const messages = {
|
||||
},
|
||||
zh_TW: {
|
||||
...twLocale,
|
||||
...elementTWLocale
|
||||
...elementTWLocale,
|
||||
...fuTW
|
||||
}
|
||||
}
|
||||
export function getLanguage() {
|
||||
|
@ -1503,7 +1503,10 @@ export default {
|
||||
timeout_refresh: '請求超時,稍後刷新...',
|
||||
mobile_layout: '移動端佈局',
|
||||
component_hidden: '隱藏的組件',
|
||||
public_link_tips: '當前是公共鏈接模式,目標儀錶闆未設置公共鏈接,無法跳轉'
|
||||
public_link_tips: '當前是公共鏈接模式,目標儀錶闆未設置公共鏈接,無法跳轉',
|
||||
input_title: '請輸入標題',
|
||||
show_title: '顯示標題',
|
||||
default_settings: '默認值設置'
|
||||
},
|
||||
plugin: {
|
||||
local_install: '本地安裝',
|
||||
|
@ -1512,7 +1512,10 @@ export default {
|
||||
timeout_refresh: '请求超时,稍后刷新...',
|
||||
mobile_layout: '移动端布局',
|
||||
component_hidden: '隐藏的组件',
|
||||
public_link_tips: '当前是公共链接模式,目标仪表板未设置公共链接,无法跳转'
|
||||
public_link_tips: '当前是公共链接模式,目标仪表板未设置公共链接,无法跳转',
|
||||
input_title: '请输入标题',
|
||||
show_title: '显示标题',
|
||||
default_settings: '默认值设置'
|
||||
},
|
||||
plugin: {
|
||||
local_install: '本地安装',
|
||||
|
@ -14,11 +14,11 @@
|
||||
<el-col :span="16">
|
||||
<div class="filter-options-right">
|
||||
<span style="padding-right: 10px;">
|
||||
<el-checkbox v-model="attrs.showTitle" @change="showTitleChange">显示标题
|
||||
<el-checkbox v-model="attrs.showTitle" @change="showTitleChange">{{ $t('panel.show_title') }}
|
||||
</el-checkbox>
|
||||
<el-popover v-model="titlePopovervisible" placement="bottom-end" :disabled="!attrs.showTitle" width="200">
|
||||
<div style="width: 100%;overflow-y: auto;overflow-x: hidden;word-break: break-all;position: relative;">
|
||||
<el-input v-model="attrs.title" placeholder="请输入标题" type="textarea" maxlength="15" show-word-limit />
|
||||
<el-input v-model="attrs.title" :placeholder="$t('panel.input_title')" type="textarea" maxlength="15" show-word-limit />
|
||||
</div>
|
||||
|
||||
<i
|
||||
|
Loading…
Reference in New Issue
Block a user