Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-luck
·
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
Plain Diff
Browse Files
Authored by
huangyi
2019-01-08 11:39:03 +0800
Commit
fa8397f2fc53487e775c9e757e6f3aed418ae225
2 parents
87826d36
7ee7c452
Merge branch 'feature/code-style' of
http://git.yoho.cn/fe/yoho-luck
into feature/code-style
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
1 deletions
libs/yas.js
pages/zeroSell/components/prize-item.js
pages/zeroSell/components/product-item-status.js
pages/zeroSell/components/product-item.js
libs/yas.js
View file @
fa8397f
...
...
@@ -74,7 +74,7 @@ const pageOpen = data => {
PAGE_PARAM
:
_pageParam
(
options
,
path
),
PAGE_NAME
:
_pageName
(
options
,
path
),
FROM_PAGE_NAME
:
_pageName
(
options
,
fromPath
),
FROM_PAGE_PARAM
:
_pageParam
(
fromOptions
,
fromPath
)
FROM_PAGE_PARAM
:
options
.
fromPageParam
||
_pageParam
(
fromOptions
,
fromPath
)
});
};
...
...
pages/zeroSell/components/prize-item.js
View file @
fa8397f
...
...
@@ -58,6 +58,7 @@ Component({
}
else
{
router
.
go
(
'detail'
,
{
tabIdx
:
+
this
.
data
.
tabIdx
+
1
,
fromPageParam
:
+
this
.
data
.
tabIdx
+
1
,
actPrizeId
:
this
.
properties
.
item
.
act_prize_id
});
}
...
...
pages/zeroSell/components/product-item-status.js
View file @
fa8397f
...
...
@@ -11,6 +11,7 @@ Component({
onClick
()
{
router
.
go
(
'detail'
,
{
tabIdx
:
+
this
.
data
.
tabIdx
+
1
,
fromPageParam
:
+
this
.
data
.
tabIdx
+
1
,
actPrizeId
:
this
.
properties
.
product
.
id
});
}
...
...
pages/zeroSell/components/product-item.js
View file @
fa8397f
...
...
@@ -13,6 +13,7 @@ Component({
goDetail
()
{
router
.
go
(
'detail'
,
{
tabIdx
:
+
this
.
data
.
tabIdx
+
1
,
fromPageParam
:
+
this
.
data
.
tabIdx
+
1
,
actPrizeId
:
this
.
properties
.
product
.
id
});
}
...
...
Please
register
or
login
to post a comment