feat: 更新 @riwa/api-types 依赖至 0.0.74;修改多个视图中的“是否激活”字段为“是否启用”

This commit is contained in:
2026-01-04 21:05:38 +07:00
parent 4c8fc46ad4
commit f53a72de4a
7 changed files with 23 additions and 33 deletions

View File

@@ -138,7 +138,7 @@ const columns: TableBaseColumns = [
title: '操作',
fixed: 'right',
key: 'operation',
width: 200,
width: 140,
operations: (row: any) => [
{
contentText: '编辑',
@@ -180,15 +180,15 @@ const filterColumns: TableFilterColumns = [
key: 'name'
},
{
title: '是否激活',
title: '是否启用',
key: 'isActive',
component: NSelect,
componentProps: {
placeholder: '请选择状态',
clearable: true,
options: [
{ label: '激活', value: true },
{ label: '未激活', value: false }
{ label: '启用', value: true },
{ label: '未启用', value: false }
]
}
}