|
@@ -448,7 +448,10 @@ const selectWingdings = (item) => {
|
|
|
|
|
|
|
|
const { sheet, row, col } = currentCell.value
|
|
const { sheet, row, col } = currentCell.value
|
|
|
const cell = sheet.getCell(row, col)
|
|
const cell = sheet.getCell(row, col)
|
|
|
-
|
|
|
|
|
|
|
+ if (!cell.allowEditInCell()){
|
|
|
|
|
+ wingdingsDialogVisible.value = false
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
// 获取当前单元格的值
|
|
// 获取当前单元格的值
|
|
|
const currentValue = cell.value() || ''
|
|
const currentValue = cell.value() || ''
|
|
|
|
|
|