forked from github/dataease
commit
3e44b9c988
@ -168,6 +168,7 @@ const saveSelfSubject = () => {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 4px;
|
top: 4px;
|
||||||
right: 4px;
|
right: 4px;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,6 +124,8 @@ const templateInnerPreview = e => {
|
|||||||
.template-button {
|
.template-button {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-area {
|
.bottom-area {
|
||||||
@ -149,6 +151,11 @@ const templateInnerPreview = e => {
|
|||||||
color: deepskyblue;
|
color: deepskyblue;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.testcase-template:hover {
|
||||||
|
.template-button {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
.create-area {
|
.create-area {
|
||||||
bottom: -38px !important;
|
bottom: -38px !important;
|
||||||
}
|
}
|
||||||
|
@ -212,6 +212,18 @@ const dfsName = (arr, id) => {
|
|||||||
return name
|
return name
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const dfsChild = arr => {
|
||||||
|
return arr.filter(ele => {
|
||||||
|
if (ele.leaf) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
if (!!ele.children?.length) {
|
||||||
|
ele.children = dfsChild(ele.children || [])
|
||||||
|
}
|
||||||
|
return !!ele.children?.length
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
const getDsName = (id: string) => {
|
const getDsName = (id: string) => {
|
||||||
return dfsName(state.dataSourceList, id)
|
return dfsName(state.dataSourceList, id)
|
||||||
}
|
}
|
||||||
@ -860,9 +872,9 @@ const getDatasource = () => {
|
|||||||
getDatasourceList().then(res => {
|
getDatasourceList().then(res => {
|
||||||
const _list = (res as unknown as DataSource[]) || []
|
const _list = (res as unknown as DataSource[]) || []
|
||||||
if (_list && _list.length > 0 && _list[0].id === '0') {
|
if (_list && _list.length > 0 && _list[0].id === '0') {
|
||||||
state.dataSourceList = _list[0].children
|
state.dataSourceList = dfsChild(_list[0].children)
|
||||||
} else {
|
} else {
|
||||||
state.dataSourceList = _list
|
state.dataSourceList = dfsChild(_list)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user