This commit is contained in:
孟帅
2024-04-22 23:08:40 +08:00
parent 82483bd7b9
commit e144b12580
445 changed files with 17457 additions and 6708 deletions

View File

@@ -5,12 +5,12 @@ export const columns = [
{
title: 'ID',
key: 'id',
width: 80,
width: 100,
},
{
title: '岗位',
key: 'name',
width: 100,
width: 200,
render(row) {
return h(
NTag,
@@ -48,17 +48,14 @@ export const columns = [
);
},
},
// {
// title: '排序',
// key: 'sort',
// width: 100,
// },
{
title: '备注',
key: 'sort',
width: 150,
},
{
title: '创建时间',
key: 'createdAt',
width: 150,
render: (rows, _) => {
return rows.createdAt;
},
width: 180,
},
];