dataset.onAppend 수정

main
이범준 1 month ago
parent 5c2277767d
commit 402ae1d68b

@ -410,7 +410,10 @@
}
$P.productList.onAppend = item => {
$P.productList.onAppend = (item) => {
if($P.productList._items != null && $P.productList._items.length > 0){
$P.productList._items.forEach((it)=>{it.state = "";});
}
if (!item) return;
if (item.length < 1) return;

@ -379,7 +379,10 @@
}
$P.productList.onAppend = item => {
$P.productList.onAppend = (item) => {
if($P.productList._items != null && $P.productList._items.length > 0){
$P.productList._items.forEach((it)=>{it.state = "";});
}
if (!item) return;
if (item.length < 1) return;

Loading…
Cancel
Save