Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
2016-02-17 20:00:48 +0800
Commit
d64c6739e9067820110862db46ddd52914204eb0
1 parent
014000ae
修复加价购商品图片显示错误的bug
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
View file @
d64c673
...
...
@@ -708,11 +708,9 @@ class CartModel
}
// 缩略图
foreach
(
$val
[
'images_list'
]
as
$image
)
{
$thumbImageList
[]
=
array
(
'img'
=>
Helpers
::
getImageUrl
(
$image
[
'image_url'
],
60
,
60
)
);
}
$thumbImageList
[]
=
array
(
'img'
=>
Helpers
::
getImageUrl
(
$val
[
'color_image'
],
60
,
60
)
);
// 商品库存总数
$totalStorageNum
+=
$colorNum
;
...
...
Please
register
or
login
to post a comment