Authored by 李靖

Merge branch 'hotfix/coupon' into 'release/6.3'

卷错别字



See merge request !1077
... ... @@ -149,9 +149,9 @@ exports.coupon = (req, res, next) => {
module: 'activity',
page: 'store-coupon',
pageHeader: headerModel.setNav({
navTitle: '我的优惠'
navTitle: '我的优惠'
}),
title: '我的优惠',
title: '我的优惠',
width750: true,
localCss: true,
};
... ...
... ... @@ -8,7 +8,7 @@ module.exports = class extends global.yoho.BaseModel {
}
/**
* 领取验证以及领列表
* 领取验证以及领列表
*/
freeMail(uid, verify) {
return api.get('', {
... ...
... ... @@ -262,8 +262,8 @@ router.get('/app-downloads', appDownloads.index);
router.get('/couponSend', couponFloor.couponSend); // 获取优惠券
router.get('/birthday', auth, birthday.index); // 生日卷活动
router.get('/getCoupon', birthday.getCoupon); // 获取生日卷状态
router.get('/birthday', auth, birthday.index); // 生日券活动
router.get('/getCoupon', birthday.getCoupon); // 获取生日券状态
router.get('/share-buy', update('5.7.0'), auth, shareBuy.index); // 分享购首页
router.get('/share-buy/detail', update('5.7.0'), shareBuy.detail); // 分享购详情页
... ... @@ -292,7 +292,7 @@ router.get('/store-home/coffee', storeHome.storeAuth, storeHome.coffee); // 线
router.get('/store-home/green', storeHome.storeAuth, storeHome.green); // 线下店个人中心-绿植
router.get('/store-home/history', storeHome.storeAuth, storeHome.history); // 线下店个人中心-消费明细
router.get('/store-home/ewm', storeHome.storeAuth, storeHome.ewm); // 线下店个人中心-二维码
router.get('/store-home/coupon', storeHome.storeAuth, storeHome.coupon); // 线下店个人中心-优惠
router.get('/store-home/coupon', storeHome.storeAuth, storeHome.coupon); // 线下店个人中心-优惠
router.get('/store-home/moreHistory', storeHome.storeAuth, storeHome.moreHistory); // 线下店个人中心-更多记录
router.get('/store-home/modify', storeHome.storeAuth, storeHome.modify); // 线下店个人中心-修改宝宝信息
... ...
... ... @@ -80,15 +80,15 @@ exports.pickCoupon = (req, res, next) => {
}).catch(next);
};
// 生日
// 生日
exports.birthCoupon = (req, res, next) => {
let responseData = {
module: 'home',
page: 'message',
pageHeader: headerModel.setNav({
navTitle: '生日'
navTitle: '生日'
}),
title: '生日',
title: '生日',
pageFooter: true
};
... ...
... ... @@ -107,7 +107,7 @@ router.get('/messageDetail', auth, message.index);
router.post('/ajaxDelMes', auth, message.ajaxDelMes);
router.post('/pickCoupon', auth, message.pickCoupon);
// 生日消息
// 生日消息
router.get('/birthCoupon', auth, message.birthCoupon);
// 在线客服
... ...
... ... @@ -25,7 +25,7 @@
</div>
{{/ shopInfo}}
<!-- 优惠 -->
<!-- 优惠 -->
<div class="shop-coupon coupon-group">
{{> reds-shop/coupon}}
</div>
... ...
... ... @@ -53,7 +53,7 @@
<div id="home-page" class="main">
<div id="nav-main" class="nav-main">
<!-- 优惠 -->
<!-- 优惠 -->
<div class="shop-coupon coupon-group"></div>
<!-- 大导航 -->
... ...
... ... @@ -109,7 +109,7 @@
{{!--/基础店铺页面--}}
{{#ifor brandHome baseShopHome}}
{{!--优惠--}}
{{!--优惠--}}
<div class="shop-coupon coupon-group"></div>
{{/ifor}}
... ...