Merge branch 'gray'
Showing
8 changed files
with
9 additions
and
4 deletions
public/img/home/new-qrcode/vip-1.png
100755 → 100644
public/img/home/new-qrcode/vip-2.png
100755 → 100644
public/img/home/new-qrcode/vip-3.png
100755 → 100644
@@ -32,7 +32,7 @@ let goodObj = { | @@ -32,7 +32,7 @@ let goodObj = { | ||
32 | $('.good-item').on('click', '.edit-size-info', function(e) { | 32 | $('.good-item').on('click', '.edit-size-info', function(e) { |
33 | self.sizeInfoClick(e); | 33 | self.sizeInfoClick(e); |
34 | }); | 34 | }); |
35 | - $('.good-item').on('click', '.name,.color-size-row,.img', function(e) { | 35 | + $('.good-item').on('touchend', '.name,.color-size-row,.img', function(e) { |
36 | self.goodClick(e); | 36 | self.goodClick(e); |
37 | }); | 37 | }); |
38 | $('.good-item').on('click', '.bottom .re-add', function(e) { | 38 | $('.good-item').on('click', '.bottom .re-add', function(e) { |
@@ -301,8 +301,10 @@ $yohoPage.on('touchstart', '.tap-hightlight', function() { | @@ -301,8 +301,10 @@ $yohoPage.on('touchstart', '.tap-hightlight', function() { | ||
301 | $(this).removeClass('highlight'); | 301 | $(this).removeClass('highlight'); |
302 | }); | 302 | }); |
303 | 303 | ||
304 | -$('.nav-home').on('touchstart', function() { | 304 | +$('.nav-home').on('touchstart', function(e) { |
305 | $('.homebuttom').toggleClass('hide'); | 305 | $('.homebuttom').toggleClass('hide'); |
306 | + e.preventDefault(); | ||
307 | + e.stopPropagation(); | ||
306 | }); | 308 | }); |
307 | 309 | ||
308 | // 点击关闭头部菜单 | 310 | // 点击关闭头部菜单 |
@@ -46,6 +46,9 @@ class NewQrcode extends Page { | @@ -46,6 +46,9 @@ class NewQrcode extends Page { | ||
46 | reload() { | 46 | reload() { |
47 | this.ajax({ | 47 | this.ajax({ |
48 | url: '/home/newQrcode/reload', | 48 | url: '/home/newQrcode/reload', |
49 | + data: { | ||
50 | + app_version: this.qs.app_version | ||
51 | + } | ||
49 | }).then(result => { | 52 | }).then(result => { |
50 | if (result) { | 53 | if (result) { |
51 | this.qrText = result; | 54 | this.qrText = result; |
-
Please register or login to post a comment