From 0ecfe123772a28505f321a3549af5725bcfb7c69 Mon Sep 17 00:00:00 2001 From: xingyuv Date: Mon, 20 Mar 2023 16:42:22 +0800 Subject: [PATCH] feat: post --- src/views/system/post/post.data.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/system/post/post.data.ts b/src/views/system/post/post.data.ts index f66c68b..3ffeebb 100644 --- a/src/views/system/post/post.data.ts +++ b/src/views/system/post/post.data.ts @@ -32,11 +32,13 @@ export const columns: BasicColumn[] = [ }, { title: '备注', - dataIndex: 'remark' + dataIndex: 'remark', + width: 180 }, { title: '创建时间', dataIndex: 'createTime', + width: 180, customRender: ({ text }) => { return useRender.renderDate(text) }