reactor:统一导出的 url 都是 export-excel

This commit is contained in:
YunaiV
2025-06-16 09:08:32 +08:00
parent 130a839180
commit f8d99c593d
7 changed files with 7 additions and 7 deletions

View File

@@ -112,7 +112,7 @@ const handleDelete = async (id: number) => {
/** 批量删除按钮操作 */
const checkedIds = ref<number[]>([])
const handleRowCheckboxChange = (rows: DataSourceConfigApi.DataSourceConfigVO[]) => {
// 过滤掉id为0的主数据源
// 过滤掉id为 0 的主数据源
checkedIds.value = rows.map((row) => row.id!).filter((id) => id !== 0 && Boolean(id))
}