From cf76310340167fa97fa82627800c61e450ba52eb Mon Sep 17 00:00:00 2001 From: yueli Date: Mon, 31 Aug 2026 15:03:22 +0800 Subject: [PATCH] =?UTF-8?q?fix(stocktake):=20=E4=BF=AE=E5=A4=8D=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF=E4=B8=AD=20TS=20=E7=B1=BB=E5=9E=8B=E6=B3=A8=E8=A7=A3?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E7=9A=84=E7=BC=96=E8=AF=91=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit row-class-name 的 (row: any) 在 Vue 模板中不合法,去掉类型注解 --- inventory-web/src/views/stock/stocktake/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inventory-web/src/views/stock/stocktake/index.vue b/inventory-web/src/views/stock/stocktake/index.vue index 9711eaa..e77835c 100644 --- a/inventory-web/src/views/stock/stocktake/index.vue +++ b/inventory-web/src/views/stock/stocktake/index.vue @@ -240,7 +240,7 @@ border row-key="uniqueKey" style="width: 100%" - :row-class-name="(row: any) => row._justScanned ? 'just-scanned-row' : ''" + :row-class-name="(row) => row._justScanned ? 'just-scanned-row' : ''" >