|
|
|
@ -20,7 +20,7 @@ const show = ref(false);
|
|
|
|
|
|
|
|
|
|
const cardStyle = {
|
|
|
|
|
width: "800px",
|
|
|
|
|
height: "800px",
|
|
|
|
|
height: "830px",
|
|
|
|
|
"--n-padding-bottom": "10px",
|
|
|
|
|
"--n-padding-left": "10px",
|
|
|
|
|
};
|
|
|
|
@ -63,6 +63,7 @@ const columns: DataTableColumns<RowData> = [
|
|
|
|
|
{
|
|
|
|
|
title: "创建时间",
|
|
|
|
|
key: "createtime",
|
|
|
|
|
width: 180
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "更新者",
|
|
|
|
@ -71,6 +72,7 @@ const columns: DataTableColumns<RowData> = [
|
|
|
|
|
{
|
|
|
|
|
title: "更新时间",
|
|
|
|
|
key: "updatetime",
|
|
|
|
|
width: 180
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
@ -317,6 +319,7 @@ const inputHandler = debounce((word) => {
|
|
|
|
|
<div class="wrapper-table">
|
|
|
|
|
<NDataTable
|
|
|
|
|
ref="tableRef"
|
|
|
|
|
:max-height="480"
|
|
|
|
|
remote
|
|
|
|
|
:row-props="rowProps as any"
|
|
|
|
|
:columns="columns"
|
|
|
|
|