|
@@ -158,7 +158,12 @@ function init() {
|
|
|
} else {
|
|
|
//$('.all_area').hide()
|
|
|
$('.optional_count').show()
|
|
|
- $('.total').html(areaData.data.buyset.areacount)
|
|
|
+ if(areaData.data.buyset.areacount!=0){
|
|
|
+ $('.total').html(areaData.data.buyset.areacount)
|
|
|
+ }else{
|
|
|
+ $(".optional_count").css("display","none");
|
|
|
+ }
|
|
|
+
|
|
|
$('.tab.whole').parent('li').hide();
|
|
|
// $('.checkbox.other').attr('disabled',true);
|
|
|
initResult()
|
|
@@ -186,6 +191,14 @@ function initResult() {
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
+ /*else{ //购买全国是否可以编辑市
|
|
|
+ $('.province').each(function () {
|
|
|
+ let that = $(this).parent('.tab:not(.municipality)');
|
|
|
+ that.bind('click', function () {
|
|
|
+ slideFun($(this));
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }*/
|
|
|
// 渲染已选择结果
|
|
|
for (const k in p) {
|
|
|
console.log(p[k], k)
|