Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
2016-04-13 20:17:01 +0800
Commit
b6c8e3a8538183827268008485db378af060fb9d
1 parent
9658f4e1
修复选中顺丰快递时,再切换到不支持顺丰快递的地址时不能正确显示的bug
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
View file @
b6c8e3a
...
...
@@ -418,7 +418,7 @@ class CartModel
$result
[
'dispatchMode'
][
$key
]
=
$oneDeliv
;
}
if
(
isset
(
$orderInfo
[
'deliveryId'
]))
{
if
(
isset
(
$orderInfo
[
'deliveryId'
])
&&
isset
(
$idArr
[
$orderInfo
[
'deliveryId'
]])
)
{
$flag
=
array_search
(
$orderInfo
[
'deliveryId'
],
$idArr
);
$flag
!==
false
&&
$result
[
'dispatchMode'
][
$flag
][
'isSelected'
]
=
true
;
}
else
{
...
...
Please
register
or
login
to post a comment