Authored by 梁志锋

update

framework @ 119c247f
1 -Subproject commit 75bbc3b075de19f239532f60c5995d06c5f814e2 1 +Subproject commit 119c247f5cf929aa1e059e40609bb16dd6b58f05
@@ -63,13 +63,13 @@ function hideSideBar() { @@ -63,13 +63,13 @@ function hideSideBar() {
63 } 63 }
64 } 64 }
65 65
66 -$('.overlay').on('touchend', function(e) { 66 +$('.overlay').on('touchstart', function(e) {
67 hideSideBar(); 67 hideSideBar();
68 return false; 68 return false;
69 }); 69 });
70 70
71 //点击一级导航,弹出二级导航 71 //点击一级导航,弹出二级导航
72 -$sideNav.on('touchend', 'li', function (e) { 72 +$sideNav.on('touchstart', 'li', function (e) {
73 if ($(this).find('.sub-nav').size() > 0) { 73 if ($(this).find('.sub-nav').size() > 0) {
74 $('.sub-nav').removeClass('show'); 74 $('.sub-nav').removeClass('show');
75 $(this).find('.sub-nav').addClass('show'); 75 $(this).find('.sub-nav').addClass('show');
@@ -83,12 +83,12 @@ $sideNav.on('touchend', 'li', function (e) { @@ -83,12 +83,12 @@ $sideNav.on('touchend', 'li', function (e) {
83 83
84 //返回一级导航,收起二级导航 84 //返回一级导航,收起二级导航
85 $subNav.each(function () { 85 $subNav.each(function () {
86 - $(this).find('li').eq(0).on('touchend', function (e) { 86 + $(this).find('li').eq(0).on('touchstart', function (e) {
87 $('.sub-nav').removeClass('show'); 87 $('.sub-nav').removeClass('show');
88 e.stopPropagation(); 88 e.stopPropagation();
89 return false; 89 return false;
90 }); 90 });
91 -}).on('touchend', function(e) { 91 +}).on('touchstart', function(e) {
92 if (e.currentTarget !== e.target) { 92 if (e.currentTarget !== e.target) {
93 $subNav.find('li').removeClass('current'); 93 $subNav.find('li').removeClass('current');
94 } 94 }
@@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
21 "yoho.iswiper": "3.0.1", 21 "yoho.iswiper": "3.0.1",
22 "iscroll": "5.1.2", 22 "iscroll": "5.1.2",
23 "import-style": "1.0.0", 23 "import-style": "1.0.0",
24 - "yoho.lazyload": "1.1.0", 24 + "yoho.lazyload": "1.1.2",
25 "yoho.handlebars": "3.0.3", 25 "yoho.handlebars": "3.0.3",
26 "yoho.hammer": "2.0.4" 26 "yoho.hammer": "2.0.4"
27 }, 27 },
1 .brand-page { 1 .brand-page {
2 -  
3 .newbrand-search { 2 .newbrand-search {
4 width: 93.75%; 3 width: 93.75%;
5 height: 60rem / $pxConvertRem; 4 height: 60rem / $pxConvertRem;
1 .yoho-footer { 1 .yoho-footer {
2 font-size: 12px; 2 font-size: 12px;
3 background-color: #fff; 3 background-color: #fff;
  4 + margin-bottom: 2.5rem;
4 5
5 .op-row { 6 .op-row {
6 position: relative; 7 position: relative;