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
Email Patches
Plain Diff
Browse Files
Authored by
hongyong.zhao
2018-11-14 20:00:56 +0800
Commit
f08a5da834250617910e11642bdaeb080851c518
1 parent
7e9450ad
bug fix
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
pages/zeroSell/components/action-bar.js
pages/zeroSell/index.wxss
pages/zeroSell/service/zero-sell.js
pages/zeroSell/components/action-bar.js
View file @
f08a5da
...
...
@@ -93,7 +93,12 @@ Component({
},
goList
()
{
router
.
go
(
'index'
);
if
(
getCurrentPages
().
length
===
1
)
{
router
.
go
(
'index'
);
}
else
{
wx
.
navigateBack
()
}
},
cancelAlert
()
{
...
...
pages/zeroSell/index.wxss
View file @
f08a5da
...
...
@@ -24,7 +24,7 @@
.bottom-banner {
/* position: fixed; */
margin
-bottom: 88rpx;
padding
-bottom: 88rpx;
height: 234rpx;
width: 100%;
}
...
...
pages/zeroSell/service/zero-sell.js
View file @
f08a5da
...
...
@@ -69,6 +69,7 @@ class ZeroSellService extends Service {
}
fetchCode
(
data
)
{
data
.
miniAppType
=
MINI_APP_TYPE
return
this
.
_post
(
'/code/gain'
,
data
);
}
...
...
Please
register
or
login
to post a comment