fix: Excel 数据集创建页面 #3318 API 数据源编辑界面 #3351

This commit is contained in:
dataeaseShu 2022-10-14 11:04:57 +08:00
parent 15f4d6dacf
commit 61717eb392
2 changed files with 14 additions and 5 deletions

View File

@ -73,7 +73,7 @@
:title="data.excelLable"
class="custom-tree-node"
>
{{ data.excelLable }}
<span class="label">{{ data.excelLable }}</span>
<span
v-if="
(data.nameExsit && !param.tableId) ||
@ -665,9 +665,13 @@ export default {
.custom-tree-node {
position: relative;
width: 80%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: flex;
.label {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 85%;
}
}
.error-name-exsit {
position: absolute;
@ -702,6 +706,7 @@ export default {
.table-detail {
font-family: PingFang SC;
flex: 1;
overflow-x: auto;
.dataset {
padding: 21px 24px;

View File

@ -102,7 +102,7 @@
</div>
<div class="req-value">
<span>{{ api.method }}</span>
<span>{{ api.url }}</span>
<span :title="api.url">{{ api.url }}</span>
</div>
</div>
</template>
@ -1544,6 +1544,10 @@ export default {
}
:nth-child(2) {
margin-left: 84px;
max-width: 415px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.req-title {