...
|
...
|
@@ -5,13 +5,12 @@ const _ = require('lodash'); |
|
|
|
|
|
// 会员权益方案写死,后台未做,后期删除
|
|
|
function droitHtml(contents) {
|
|
|
let banner = 'http://img10.static.yhbimg.com/article/2017/06/20/12/01a50a1f45b97365e758d6890858998310.jpg' +
|
|
|
'?imageView2/2/w/{width}/h/{height}';
|
|
|
let imageView2 = '?imageView2/2/w/{width}/h/{height}';
|
|
|
|
|
|
_.map(contents, item => {
|
|
|
if (item.displayName === '7天退换货') {
|
|
|
item.content = {
|
|
|
banner: banner,
|
|
|
banner: `http://img10.static.yhbimg.com/sort/2018/03/26/13/018a576d12f6f337d8ee4009e060e4137e.jpg${imageView2}`,
|
|
|
intros: [
|
|
|
{title: '特权介绍', data: ['自物流签收次日起7天之内可以退货,15天之内可以换货(以快递公司的物流签收日期为准)。']},
|
|
|
{title: '其他说明', data: ['退换货政策详细说明请见<a href=//m.yohobuy.com/service/chatQaList?openby:yohobuy={"action":"go.sfhome"} style="text-decoration: underline;color: red;">app服务与反馈-售后问题-退换货政策</a>。']},
|
...
|
...
|
@@ -20,7 +19,7 @@ function droitHtml(contents) { |
|
|
};
|
|
|
} else if (item.displayName === '极速发货') {
|
|
|
item.content = {
|
|
|
banner: banner,
|
|
|
banner: `http://img10.static.yhbimg.com/sort/2018/03/26/13/013fc1a6ce378be56f3d1470715f741723.jpg${imageView2}`,
|
|
|
intros: [
|
|
|
{title: '特权介绍', data: ['普通商品下单后24小时内安排发货,部分特殊商品除外。']},
|
|
|
{title: '其他说明', data: ['预售商品发货时间以商品页面标注为准。', '部分品牌需要调货,发货周期会有一定延长,发货时间以下单页面提示为准。']},
|
...
|
...
|
@@ -29,7 +28,7 @@ function droitHtml(contents) { |
|
|
};
|
|
|
} else if (item.displayName === '专享折扣') {
|
|
|
item.content = {
|
|
|
banner: banner,
|
|
|
banner: `http://img12.static.yhbimg.com/sort/2018/03/26/13/02ae523f4c97e2c8d184932c3c846a59f9.jpg${imageView2}`,
|
|
|
intros: [
|
|
|
{title: '特权介绍', data: ['会员在有货平台上购买符合活动规则的商品时,可享受对应等级的折扣。会员等级越高,享受的折扣力度越大。']},
|
|
|
{title: '折扣说明', data: ['银卡会员享9.5折优惠,金卡会员享9折优惠,白金卡会员享8.8折优惠。']},
|
...
|
...
|
@@ -38,7 +37,7 @@ function droitHtml(contents) { |
|
|
};
|
|
|
} else if (item.displayName === '生日礼包') {
|
|
|
item.content = {
|
|
|
banner: banner,
|
|
|
banner: `http://img12.static.yhbimg.com/sort/2018/03/26/13/02402b95df5f0f0f5ef4d4b79edd515577.jpg${imageView2}`,
|
|
|
intros: [
|
|
|
{title: '特权介绍', data: ['会员专享生日福利,等级越高,优惠力度越大,具体以实际领取为准。']},
|
|
|
{title: '权益对象', data: ['银卡及以上会员、且已完善个人生日信息才可领取生日福利券。']},
|
...
|
...
|
@@ -52,7 +51,7 @@ function droitHtml(contents) { |
|
|
};
|
|
|
} else if (item.displayName === '免邮服务') {
|
|
|
item.content = {
|
|
|
banner: banner,
|
|
|
banner: `http://img10.static.yhbimg.com/sort/2018/03/26/13/01a583cddfa6fc90be33eab8c1f5a6c892.jpg${imageView2}`,
|
|
|
intros: [
|
|
|
{title: '特权介绍', data: ['金卡及以上会员享受限定次数的免费送达服务。']},
|
|
|
{title: '使用说明', data: [
|
...
|
...
|
@@ -62,11 +61,17 @@ function droitHtml(contents) { |
|
|
interlocution: []
|
|
|
};
|
|
|
} else if (item.displayName === '购物返币') {
|
|
|
item.content = {};
|
|
|
item.content = {
|
|
|
banner: `http://img11.static.yhbimg.com/sort/2018/03/26/13/0160bd2c93e5730608a7921181eb826ab2.jpg${imageView2}`
|
|
|
};
|
|
|
} else if (item.displayName === '升级礼包') {
|
|
|
item.content = {};
|
|
|
} else if (item.displayName === '专属客服') {
|
|
|
item.content = {};
|
|
|
item.content = {
|
|
|
banner: `http://img11.static.yhbimg.com/sort/2018/03/26/13/0100d72b57f8c364e69cdfeb708b5d852a.jpg${imageView2}`
|
|
|
};
|
|
|
} else if (item.displayName === '优享客服') {
|
|
|
item.content = {
|
|
|
banner: `http://img11.static.yhbimg.com/sort/2018/03/26/13/01ded1925ced60db1a63937bcd3afbbb1d.jpg${imageView2}`
|
|
|
};
|
|
|
}
|
|
|
});
|
|
|
|
...
|
...
|
|