/** * 将列表置为不可编辑状态 * @param list 要操作的表格 */ export function useSetAllRowReadable(list: any) { for (const item of list) { item.editable = false } }