Showing
8 changed files
with
13 additions
and
13 deletions
@@ -149,9 +149,9 @@ exports.coupon = (req, res, next) => { | @@ -149,9 +149,9 @@ exports.coupon = (req, res, next) => { | ||
149 | module: 'activity', | 149 | module: 'activity', |
150 | page: 'store-coupon', | 150 | page: 'store-coupon', |
151 | pageHeader: headerModel.setNav({ | 151 | pageHeader: headerModel.setNav({ |
152 | - navTitle: '我的优惠卷' | 152 | + navTitle: '我的优惠券' |
153 | }), | 153 | }), |
154 | - title: '我的优惠卷', | 154 | + title: '我的优惠券', |
155 | width750: true, | 155 | width750: true, |
156 | localCss: true, | 156 | localCss: true, |
157 | }; | 157 | }; |
@@ -8,7 +8,7 @@ module.exports = class extends global.yoho.BaseModel { | @@ -8,7 +8,7 @@ module.exports = class extends global.yoho.BaseModel { | ||
8 | } | 8 | } |
9 | 9 | ||
10 | /** | 10 | /** |
11 | - * 领取验证以及领卷列表 | 11 | + * 领取验证以及领券列表 |
12 | */ | 12 | */ |
13 | freeMail(uid, verify) { | 13 | freeMail(uid, verify) { |
14 | return api.get('', { | 14 | return api.get('', { |
@@ -262,8 +262,8 @@ router.get('/app-downloads', appDownloads.index); | @@ -262,8 +262,8 @@ router.get('/app-downloads', appDownloads.index); | ||
262 | 262 | ||
263 | router.get('/couponSend', couponFloor.couponSend); // 获取优惠券 | 263 | router.get('/couponSend', couponFloor.couponSend); // 获取优惠券 |
264 | 264 | ||
265 | -router.get('/birthday', auth, birthday.index); // 生日卷活动 | ||
266 | -router.get('/getCoupon', birthday.getCoupon); // 获取生日卷状态 | 265 | +router.get('/birthday', auth, birthday.index); // 生日券活动 |
266 | +router.get('/getCoupon', birthday.getCoupon); // 获取生日券状态 | ||
267 | 267 | ||
268 | router.get('/share-buy', update('5.7.0'), auth, shareBuy.index); // 分享购首页 | 268 | router.get('/share-buy', update('5.7.0'), auth, shareBuy.index); // 分享购首页 |
269 | router.get('/share-buy/detail', update('5.7.0'), shareBuy.detail); // 分享购详情页 | 269 | router.get('/share-buy/detail', update('5.7.0'), shareBuy.detail); // 分享购详情页 |
@@ -292,7 +292,7 @@ router.get('/store-home/coffee', storeHome.storeAuth, storeHome.coffee); // 线 | @@ -292,7 +292,7 @@ router.get('/store-home/coffee', storeHome.storeAuth, storeHome.coffee); // 线 | ||
292 | router.get('/store-home/green', storeHome.storeAuth, storeHome.green); // 线下店个人中心-绿植 | 292 | router.get('/store-home/green', storeHome.storeAuth, storeHome.green); // 线下店个人中心-绿植 |
293 | router.get('/store-home/history', storeHome.storeAuth, storeHome.history); // 线下店个人中心-消费明细 | 293 | router.get('/store-home/history', storeHome.storeAuth, storeHome.history); // 线下店个人中心-消费明细 |
294 | router.get('/store-home/ewm', storeHome.storeAuth, storeHome.ewm); // 线下店个人中心-二维码 | 294 | router.get('/store-home/ewm', storeHome.storeAuth, storeHome.ewm); // 线下店个人中心-二维码 |
295 | -router.get('/store-home/coupon', storeHome.storeAuth, storeHome.coupon); // 线下店个人中心-优惠卷 | 295 | +router.get('/store-home/coupon', storeHome.storeAuth, storeHome.coupon); // 线下店个人中心-优惠券 |
296 | router.get('/store-home/moreHistory', storeHome.storeAuth, storeHome.moreHistory); // 线下店个人中心-更多记录 | 296 | router.get('/store-home/moreHistory', storeHome.storeAuth, storeHome.moreHistory); // 线下店个人中心-更多记录 |
297 | router.get('/store-home/modify', storeHome.storeAuth, storeHome.modify); // 线下店个人中心-修改宝宝信息 | 297 | router.get('/store-home/modify', storeHome.storeAuth, storeHome.modify); // 线下店个人中心-修改宝宝信息 |
298 | 298 |
@@ -80,15 +80,15 @@ exports.pickCoupon = (req, res, next) => { | @@ -80,15 +80,15 @@ exports.pickCoupon = (req, res, next) => { | ||
80 | }).catch(next); | 80 | }).catch(next); |
81 | }; | 81 | }; |
82 | 82 | ||
83 | -// 生日卷 | 83 | +// 生日券 |
84 | exports.birthCoupon = (req, res, next) => { | 84 | exports.birthCoupon = (req, res, next) => { |
85 | let responseData = { | 85 | let responseData = { |
86 | module: 'home', | 86 | module: 'home', |
87 | page: 'message', | 87 | page: 'message', |
88 | pageHeader: headerModel.setNav({ | 88 | pageHeader: headerModel.setNav({ |
89 | - navTitle: '生日卷' | 89 | + navTitle: '生日券' |
90 | }), | 90 | }), |
91 | - title: '生日卷', | 91 | + title: '生日券', |
92 | pageFooter: true | 92 | pageFooter: true |
93 | }; | 93 | }; |
94 | 94 |
@@ -107,7 +107,7 @@ router.get('/messageDetail', auth, message.index); | @@ -107,7 +107,7 @@ router.get('/messageDetail', auth, message.index); | ||
107 | router.post('/ajaxDelMes', auth, message.ajaxDelMes); | 107 | router.post('/ajaxDelMes', auth, message.ajaxDelMes); |
108 | router.post('/pickCoupon', auth, message.pickCoupon); | 108 | router.post('/pickCoupon', auth, message.pickCoupon); |
109 | 109 | ||
110 | -// 生日卷消息 | 110 | +// 生日券消息 |
111 | router.get('/birthCoupon', auth, message.birthCoupon); | 111 | router.get('/birthCoupon', auth, message.birthCoupon); |
112 | 112 | ||
113 | // 在线客服 | 113 | // 在线客服 |
@@ -53,7 +53,7 @@ | @@ -53,7 +53,7 @@ | ||
53 | 53 | ||
54 | <div id="home-page" class="main"> | 54 | <div id="home-page" class="main"> |
55 | <div id="nav-main" class="nav-main"> | 55 | <div id="nav-main" class="nav-main"> |
56 | - <!-- 优惠卷 --> | 56 | + <!-- 优惠券 --> |
57 | <div class="shop-coupon coupon-group"></div> | 57 | <div class="shop-coupon coupon-group"></div> |
58 | 58 | ||
59 | <!-- 大导航 --> | 59 | <!-- 大导航 --> |
@@ -109,7 +109,7 @@ | @@ -109,7 +109,7 @@ | ||
109 | {{!--/基础店铺页面--}} | 109 | {{!--/基础店铺页面--}} |
110 | 110 | ||
111 | {{#ifor brandHome baseShopHome}} | 111 | {{#ifor brandHome baseShopHome}} |
112 | - {{!--优惠卷--}} | 112 | + {{!--优惠券--}} |
113 | <div class="shop-coupon coupon-group"></div> | 113 | <div class="shop-coupon coupon-group"></div> |
114 | {{/ifor}} | 114 | {{/ifor}} |
115 | 115 |
-
Please register or login to post a comment