Vanessa 2025-06-25 13:22:04 +08:00
parent d5f415ba3f
commit a9fb82a5fc
4 changed files with 48 additions and 14 deletions

View file

@ -124,7 +124,7 @@ export const genCellValueByElement = (colType: TAVCol, cellElement: HTMLElement)
} else if (colType === "mAsset") {
const mAsset: IAVCellAssetValue[] = [];
Array.from(cellElement.children).forEach((item) => {
if (item.classList.contains("av__drag-fill")) {
if (!item.classList.contains("av__celltext--url") && !item.classList.contains("av__cellassetimg")) {
return;
}
const isImg = item.classList.contains("av__cellassetimg");