fix: 编译类型检查错误

This commit is contained in:
TsMask
2025-05-15 16:30:24 +08:00
parent b817b7aa51
commit e0531d0c7d
2 changed files with 2 additions and 2 deletions

View File

@@ -618,7 +618,7 @@ onBeforeUnmount(() => {
return record.msgDirect === 0 ? 'table-striped-recv' : 'table-striped-send'; return record.msgDirect === 0 ? 'table-striped-recv' : 'table-striped-send';
}" }"
:customRow=" :customRow="
record => { (record:any) => {
return { return {
onClick: () => fnVisible(record), onClick: () => fnVisible(record),
}; };

View File

@@ -705,7 +705,7 @@ onBeforeUnmount(() => {
return `table-striped-${record.protocol}` return `table-striped-${record.protocol}`
}" }"
:customRow=" :customRow="
record => { (record:any) => {
return { return {
onClick: () => fnVisible(record), onClick: () => fnVisible(record),
}; };