Merge remote-tracking branch 'origin/stable/wap'
Showing
7 changed files
with
9 additions
and
7 deletions
@@ -10218,7 +10218,7 @@ $('.address-item').on('touchend', function() { | @@ -10218,7 +10218,7 @@ $('.address-item').on('touchend', function() { | ||
10218 | orderInfo('address', address); | 10218 | orderInfo('address', address); |
10219 | 10219 | ||
10220 | window.location.href = $this.data('href'); | 10220 | window.location.href = $this.data('href'); |
10221 | -}).on('touchstart', '.edit', function() { | 10221 | +}).on('touchend', '.edit', function() { |
10222 | window.location.href = $(this).data('href'); | 10222 | window.location.href = $(this).data('href'); |
10223 | return false; | 10223 | return false; |
10224 | }).on('touchstart', '.del', function() { | 10224 | }).on('touchstart', '.del', function() { |
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
@@ -27,7 +27,7 @@ $('.address-item').on('touchend', function() { | @@ -27,7 +27,7 @@ $('.address-item').on('touchend', function() { | ||
27 | orderInfo('address', address); | 27 | orderInfo('address', address); |
28 | 28 | ||
29 | window.location.href = $this.data('href'); | 29 | window.location.href = $this.data('href'); |
30 | -}).on('touchstart', '.edit', function() { | 30 | +}).on('touchend', '.edit', function() { |
31 | window.location.href = $(this).data('href'); | 31 | window.location.href = $(this).data('href'); |
32 | return false; | 32 | return false; |
33 | }).on('touchstart', '.del', function() { | 33 | }).on('touchstart', '.del', function() { |
@@ -5,6 +5,10 @@ | @@ -5,6 +5,10 @@ | ||
5 | visibility: hidden; | 5 | visibility: hidden; |
6 | } | 6 | } |
7 | 7 | ||
8 | + .box.bytouch { | ||
9 | + background-color:#eee; | ||
10 | + } | ||
11 | + | ||
8 | .box { | 12 | .box { |
9 | border: 1px solid #eee; | 13 | border: 1px solid #eee; |
10 | border-radius: 10rem / $pxConvertRem; | 14 | border-radius: 10rem / $pxConvertRem; |
@@ -708,11 +708,9 @@ class CartModel | @@ -708,11 +708,9 @@ class CartModel | ||
708 | } | 708 | } |
709 | 709 | ||
710 | // 缩略图 | 710 | // 缩略图 |
711 | - foreach ($val['images_list'] as $image) { | ||
712 | - $thumbImageList[] = array( | ||
713 | - 'img' => Helpers::getImageUrl($image['image_url'], 60, 60) | ||
714 | - ); | ||
715 | - } | 711 | + $thumbImageList[] = array( |
712 | + 'img' => Helpers::getImageUrl($val['color_image'], 60, 60) | ||
713 | + ); | ||
716 | 714 | ||
717 | // 商品库存总数 | 715 | // 商品库存总数 |
718 | $totalStorageNum += $colorNum; | 716 | $totalStorageNum += $colorNum; |
-
Please register or login to post a comment