助购列表数据对接

This commit is contained in:
2019-09-10 11:28:28 +08:00
parent 74d0b075f3
commit cd2c6ed3a0
3 changed files with 23 additions and 20 deletions

View File

@ -69,4 +69,13 @@ mui.plusReady(function() {
$('.cancellation').on("tap", function(){
JZL.openWindow('cancellation.html', 'cancellation.html', {user_id: localStorage.getItem("userId")});
})
let counter = 0;
$('.title').on("tap", function(){
if(counter < 20){
counter ++ ;
}else{
counter = 0;
$(".hide").removeClass("hide")
}
})
})