Authored by mali

二手库存优化

... ... @@ -460,7 +460,7 @@ function openModal(type, indexNo, imageUrl, imageInfo, skup){
$("#w").window("open");
} else {
$("#showImg").attr("src",imageUrl);
$("#imageInfo").text(imageInfo);
$("#imageInfo").text(''); //imageInfo取不到值,先置空
var form = new FormData();
form.append("skup", skup);
//发送请求
... ... @@ -501,6 +501,7 @@ function lastImg(){
$("#imageInfo").text(images[index].imageDesc);
} else {
$("#showImg").attr("src",images[index]);
$("#imageInfo").text('');
}
}
... ... @@ -518,6 +519,7 @@ function nextImg(){
$("#imageInfo").text(images[index].imageDesc);
} else {
$("#showImg").attr("src",images[index]);
$("#imageInfo").text('');
}
}
... ...