fix: 软件包表字段更新

This commit is contained in:
TsMask
2024-04-11 17:35:37 +08:00
parent dc6f4560d5
commit 325ecc8029

View File

@@ -82,7 +82,7 @@ let tableColumns: ColumnsType = [
}, },
{ {
title: t('views.configManage.softwareManage.fileName'), title: t('views.configManage.softwareManage.fileName'),
dataIndex: 'fileName', dataIndex: 'name',
align: 'center', align: 'center',
width: 2, width: 2,
}, },
@@ -94,7 +94,7 @@ let tableColumns: ColumnsType = [
}, },
{ {
title: t('views.configManage.softwareManage.updateTime'), title: t('views.configManage.softwareManage.updateTime'),
dataIndex: 'updateTime', dataIndex: 'createTime',
align: 'center', align: 'center',
customRender(opt) { customRender(opt) {
if (!opt.value) return ''; if (!opt.value) return '';
@@ -104,7 +104,7 @@ let tableColumns: ColumnsType = [
}, },
{ {
title: t('views.configManage.softwareManage.description'), title: t('views.configManage.softwareManage.description'),
dataIndex: 'comment', dataIndex: 'name',
align: 'center', align: 'center',
width: 2, width: 2,
}, },