|
@@ -333,8 +333,9 @@ function onLoading() {
|
|
|
window.onload = function() {
|
|
|
|
|
|
// 单击查看门店
|
|
|
- $("#showStore").click(function() {
|
|
|
+ $("#showStore").click(function(e) {
|
|
|
var _this = this
|
|
|
+ e.stopPropagation()
|
|
|
// 获取门店列表
|
|
|
console.log(!browser.versions.weixin,'!browser.versions.weixin')
|
|
|
if (!browser.versions.weixin){ // 不是微信端打开的页面
|
|
@@ -350,6 +351,9 @@ window.onload = function() {
|
|
|
})
|
|
|
$(_this).hide()
|
|
|
})
|
|
|
+ $(".store-info-list").scroll(function(e){
|
|
|
+ window.event? window.event.cancelBubble = true : e.stopPropagation()
|
|
|
+ })
|
|
|
})
|
|
|
// 关闭查看门店
|
|
|
$("#close-store,.mask").click(function(e) {
|