Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
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
shuaiguo
5 years ago
Commit
0bcfe6e417aaeb1251d6c536b36045086c6694b5
1 parent
7aa3eca9
fix(购物车):库存不足时尺寸修改
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
package.json
public/js/common/chose-panel-new.js
package.json
View file @
0bcfe6e
{
"name"
:
"yohobuywap-node"
,
"version"
:
"6.12.
5
"
,
"version"
:
"6.12.
6
"
,
"private"
:
true
,
"description"
:
"A New Yohobuy Project With Express"
,
"repository"
:
{
...
...
public/js/common/chose-panel-new.js
View file @
0bcfe6e
...
...
@@ -154,7 +154,7 @@ class ChosePanel {
if
(
!
num
)
{
num
=
this
.
data
.
cartInfo
&&
this
.
data
.
cartInfo
.
num
||
1
;
if
(
selectSku
&&
selectSku
.
skuId
!==
this
.
cartSkuId
)
{
num
=
this
.
minBuyNum
||
1
;
num
=
+
selectSku
.
storage
>=
+
this
.
minBuyNum
?
this
.
minBuyNum
:
1
;
}
}
return
num
;
...
...
Please
register
or
login
to post a comment