1.更新im
2.修改bug
This commit is contained in:
2025-07-09 17:31:51 +08:00
parent 8a9ea4753e
commit 91f2c612e8
9 changed files with 19 additions and 5 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ export const columns: BasicColumn[] = [
{
title: '咨询类型',
align: 'center',
dataIndex: 'type_dictText',
dataIndex: 'noticeType_dictText',
},
{
title: '创建时间',
@@ -114,6 +114,7 @@
label: '编辑',
onClick: handleEdit.bind(null, record),
auth: auth.edit,
disabled: record.status === '1',
},
{
label: '启用',
@@ -124,6 +125,7 @@
label: '删除',
onClick: handleDelete.bind(null, record),
auth: auth.deleteOne,
disabled: record.status === '1',
},
];
}