Merge pull request #10707 from dataease/pr@dev-v2_st

fix(数据源): 创建postgresql数据源,UI样式优化
This commit is contained in:
dataeaseShu 2024-07-02 15:09:46 +08:00 committed by GitHub
commit e3c26067b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -355,7 +355,7 @@ export default {
datasource_url: '地址',
please_input_datasource_url: '请输入 Elasticsearch 地址: http://es_host:es_port',
please_input_data_base: '请输入数据库名称',
please_input_jdbc_url: '请输入JDBC 连接',
please_input_jdbc_url: '请输入 JDBC 连接',
please_select_oracle_type: '选择连接类型',
please_input_user_name: '请输入用户名',
please_input_password: '请输入密码',

View File

@ -1044,7 +1044,7 @@ const emits = defineEmits(['addComplete', 'joinEditor', 'updateAllfields', 'chan
</div>
<div class="info">
<span class="label">表备注</span>
<span :title="currentNode.noteName" class="name ellipsis">{{
<span :title="currentNode.noteName" style="max-width: 240px" class="name ellipsis">{{
currentNode.noteName || '-'
}}</span>
</div>

View File

@ -858,13 +858,13 @@ defineExpose({
</el-form-item>
<el-form-item
label="JDBC连接字符串"
label=" JDBC 连接字符串"
prop="configuration.jdbcUrl"
v-if="form.configuration.urlType === 'jdbcUrl'"
>
<el-input
v-model="form.configuration.jdbcUrl"
placeholder="JDBC连接字符串"
placeholder=" JDBC 连接字符串"
autocomplete="off"
/>
</el-form-item>