门店信息,花蝶直播苹果版一直在您身边

门(men)店信息(xi)
查(cha)看(kan)您(nin)身(shen)边(bian)的门店(dian),花蝶直播苹果版一(yi)直为(wei)您提(ti)供(gong)更(geng)优(you)质(zhi)的(de)服(fu)务(wu)
地址 : " + item.address + " " + item.detailAddress + "
网址 : " + item.website + "
"
})
$('#info').html(html)
$('#info').children('li').eq(0).addClass('active')
if(windowWidth > 768){
var site = $('#info').children('li').eq(0).data('position').split(',')
setNewCenter(site[0], site[1])
}
}
// li 添加点击事件
$('#info').on('click', '.item-li', function () {
/**
* 1. 添加自身高亮, 清除其它高亮
* 2. 修改地图中心点
* */
$(this).addClass('active').siblings('li').removeClass('active')
if(windowWidth > 768){
// 获取该条信息的 坐标
var site = $(this).data('position').split(',')
if (site.length > 1) {
setNewCenter(site[0], site[1])
}
}
})
})
})