56ad2cb7 by fanguang

ue走查

1 parent ae099cdd
......@@ -1186,3 +1186,12 @@
max-width: 100%;
}
}
.el-drawer__title {
font-size: 18px;
color: #212121;
}
.el-form-item--default .el-form-item__label {
height: 26px;
line-height: 26px;
}
\ No newline at end of file
......
......@@ -189,13 +189,13 @@ function formatNodeLabel (node) {
let sliceLength = 8
switch (node.level) {
case 2:
sliceLength = 10
sliceLength = 9
break
case 3:
sliceLength = 8
sliceLength = 6
break
case 4:
sliceLength = 8
sliceLength = 6
break
}
return node.label.slice(0, sliceLength)
......
......@@ -319,6 +319,10 @@ function addTableItem (index) {
const tableObj = { ...tableFormTpl }
// form.value.fieldRQVOS.splice(index + 1, 0, tableObj)
form.value.fieldRQVOS.push(tableObj)
nextTick(() => {
let scrollBody = document.querySelector('.el-drawer__body')
scrollBody.scrollTop = scrollBody.scrollHeight
})
}
function deleteTableItem (index) {
form.value.fieldRQVOS.splice(index, 1)
......
......@@ -52,7 +52,7 @@ const treeInfo = ref({
loading: false,
currentObj: {},
editTreeItem: true,
className: 'tree-list',
// className: 'tree-list',
ellipsis: false
})
function nodeClick (data) {
......@@ -646,7 +646,7 @@ const viewGraph = () => {
}
.tags-list-right {
position: absolute;
right: 0;
right: 2px;
top:8px;
}
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!