Showing
3 changed files
with
3 additions
and
3 deletions
@@ -53,7 +53,7 @@ exports.activityChannel = (req, res) => { | @@ -53,7 +53,7 @@ exports.activityChannel = (req, res) => { | ||
53 | let categoryId = req.query.category_id; | 53 | let categoryId = req.query.category_id; |
54 | let type = req.query.type || 2; | 54 | let type = req.query.type || 2; |
55 | let template = type === 2 ? 'outlet/will-end' : 'outlet/will-start'; | 55 | let template = type === 2 ? 'outlet/will-end' : 'outlet/will-start'; |
56 | - let page = type === 2 ? 'tobeend' : 'soon'; | 56 | + let page = type === 2 ? 'outlet-will-end' : 'outlet-will-start'; |
57 | let yhChannel = yhChannelMap[channel]; | 57 | let yhChannel = yhChannelMap[channel]; |
58 | 58 | ||
59 | outletModel.getNearlyActivity(yhChannel, type, categoryId).then(result => { | 59 | outletModel.getNearlyActivity(yhChannel, type, categoryId).then(result => { |
@@ -13,7 +13,7 @@ new Countdown.Countdown({ | @@ -13,7 +13,7 @@ new Countdown.Countdown({ | ||
13 | el: el | 13 | el: el |
14 | }); | 14 | }); |
15 | 15 | ||
16 | -$('.will-end-back').on('click', function(){ | 16 | +$('.will-end-back').on('click', function() { |
17 | tip.show('活动即将结束'); | 17 | tip.show('活动即将结束'); |
18 | return false; | 18 | return false; |
19 | }); | 19 | }); |
@@ -13,7 +13,7 @@ new Countdown.Countdown({ | @@ -13,7 +13,7 @@ new Countdown.Countdown({ | ||
13 | el: el | 13 | el: el |
14 | }); | 14 | }); |
15 | 15 | ||
16 | -$('.back-ground-white').on('click', function(){ | 16 | +$('.back-ground-white').on('click', function() { |
17 | tip.show('活动即将开始'); | 17 | tip.show('活动即将开始'); |
18 | return false; | 18 | return false; |
19 | }); | 19 | }); |
-
Please register or login to post a comment