Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-app-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
黄涛
2018-12-25 17:16:48 +0800
Commit
526adf008a6dc3435537b6e8405bd3153fd33ec7
2 parents
1c2ea016
80f9c60d
Merge branch 'feature/ufo' into 'release/1.0'
fix css See merge request
!4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
apps/pages/single/coupon/components/header/header.vue
apps/store/coupon/list/actions.js
apps/pages/single/coupon/components/header/header.vue
View file @
526adf0
...
...
@@ -81,7 +81,7 @@ export default {
];
},
onBackClick() {
this.$yoho.goBack({});
this.$yoho.go
New
Back({});
},
onHelpClick() {
this.$yoho.goNewPage({
...
...
apps/store/coupon/list/actions.js
View file @
526adf0
...
...
@@ -14,10 +14,12 @@ function _handleCoupon(item, type) {
item
.
useNowLink
=
true
;
// 线下店不可使用
if
(
item
.
is_online_avail
)
{
if
(
!
item
.
is_online_avail
)
{
item
.
useNowLink
=
''
;
}
console
.
log
(
item
);
return
item
;
}
...
...
Please
register
or
login
to post a comment