Compare commits
2 Commits
fc493f38f3
...
525086cebf
| Author | SHA1 | Date |
|---|---|---|
|
|
525086cebf | |
|
|
d04512d638 |
|
|
@ -477,10 +477,10 @@
|
|||
tableDataByTableName(querys).then((res) => {
|
||||
setTableData(res.data);
|
||||
let arr: any = [];
|
||||
res.head.forEach((element, index) => {
|
||||
res.headName.forEach((element, index) => {
|
||||
arr.push({
|
||||
title: res.headName[index],
|
||||
dataIndex: element,
|
||||
title: element.comment ? element.comment : element.columnName,
|
||||
dataIndex: element.columnName,
|
||||
});
|
||||
});
|
||||
headData.value = arr;
|
||||
|
|
@ -571,7 +571,7 @@
|
|||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
.detail-content{
|
||||
.detail-content {
|
||||
overflow-y: scroll;
|
||||
height: 80vh;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue