|
@@ -148,7 +148,14 @@ $(function() {
|
|
|
$('body').on('change','.custom-checkbox',function () {
|
|
|
setTimeout(function () {
|
|
|
let checkNum = selectDataIds ? selectDataIds.length : 0 ;
|
|
|
- console.log(checkNum)
|
|
|
+ if( checkNum > 0 ) {
|
|
|
+ $('#checkNum-bid-box').show()
|
|
|
+ $('#checkNum-bid').html(checkNum)
|
|
|
+ $('#serchNum-bid').hide()
|
|
|
+ }else{
|
|
|
+ $('#checkNum-bid-box').hide()
|
|
|
+ $('#serchNum-bid').show()
|
|
|
+ }
|
|
|
})
|
|
|
})
|
|
|
|