Authored by 毕凯

Merge branch 'feature/sitemap' into 'master'

Feature/sitemap



See merge request !635
  1 +'use strict';
  2 +
  3 +const helpers = global.yoho.helpers;
  4 +const Promise = require('bluebird');
  5 +const _ = require('lodash');
  6 +const sm = require('sitemap');
  7 +const staticUrls = require('../../../config/staticUrls');
  8 +const api = global.yoho.API;
  9 +const Service = global.yoho.ServiceAPI;
  10 +
  11 +const getStaticUrls = (currentStatics) => {
  12 + let urls = [];
  13 +
  14 + _.forEach(_.get(currentStatics, 'loc', []), url => {
  15 + urls.push({
  16 + url: url,
  17 + changefreq: currentStatics.changefreq,
  18 + priority: currentStatics.priority
  19 + });
  20 + });
  21 +
  22 +
  23 + _.forEach(currentStatics, (value) => {
  24 + _.forEach(value.loc, url => {
  25 + urls.push({
  26 + url: url,
  27 + changefreq: value.changefreq,
  28 + priority: value.priority
  29 + });
  30 + });
  31 + });
  32 +
  33 + return Promise.resolve(urls);
  34 +};
  35 +
  36 +// item 地图数据
  37 +const itemXmlData = () => {// eslint-disable-line
  38 + let urls = [];
  39 +
  40 + return api.get('', {method: 'web.product.bdPromotion'}, {cache: 86400}).then(res => {
  41 + _.forEach(_.get(res, 'data', ''), val => {
  42 + urls.push({
  43 + url: 'https:' + helpers.urlFormat(`/product/${val.id}.html`, '', null),
  44 + changefreq: 'daily',
  45 + priority: 0.3
  46 + });
  47 + });
  48 +
  49 + return urls;
  50 + });
  51 +};
  52 +
  53 +// m 地图数据
  54 +const mXmlData = () => {// eslint-disable-line
  55 + return Promise.all([getStaticUrls(_.get(staticUrls, 'm')), itemXmlData()]).then(result => {
  56 + return _.union(result[0], result[1]);
  57 + });
  58 +};
  59 +
  60 +// list 地图数据
  61 +const listXmlData = () => {// eslint-disable-line
  62 + return getStaticUrls(_.get(staticUrls, 'list'));
  63 +};
  64 +
  65 +const getArticleUrls = () => {
  66 + let urls = [];
  67 +
  68 + return Service.get('/guang/api/v2/article/getLastArticleList', {limit: 1000}, {cache: 86400}).then(res => {
  69 +
  70 + _.forEach(_.get(res, 'data.artList', ''), val => {
  71 + urls.push({
  72 + url: `https:${helpers.urlFormat(`/${val.articleId}.html`, '', 'guang')}`,
  73 + changefreq: 'daily',
  74 + priority: 0.3
  75 + });
  76 + });
  77 +
  78 + return urls;
  79 + });
  80 +};
  81 +
  82 +// guang 地图数据
  83 +const guangXmlData = () => {// eslint-disable-line
  84 + return Promise.all([getStaticUrls(_.get(staticUrls, 'guang')), getArticleUrls()]).then(res => {
  85 + return _.union(res[0], res[1]);
  86 + });
  87 +};
  88 +
  89 +// 站点地图
  90 +const siteMap = (req, res, next) => {
  91 + let siteList = ['m', 'list', 'item', 'guang'],
  92 + subdomain = req.subdomains[1] || 'm';
  93 +
  94 + if (_.find(siteList, subdomain)) {
  95 + res.end('end');
  96 + return;
  97 + }
  98 + eval(subdomain + 'XmlData')().then(urls => {// eslint-disable-line
  99 + sm.createSitemap({
  100 + hostname: `https://${subdomain}.yohobuy.com`,
  101 + xmlNs: ' ',
  102 + urls: urls
  103 + }).toXML(function(err, xml) {
  104 + if (err) {
  105 + return res.status(500).end();
  106 + }
  107 + res.header('Content-Type', 'application/xml');
  108 + res.send(xml);
  109 +
  110 + });
  111 + }).catch(next);
  112 +};
  113 +
  114 +module.exports = {
  115 + siteMap
  116 +};
@@ -13,7 +13,6 @@ const cate = require(cRoot + '/cate'); @@ -13,7 +13,6 @@ const cate = require(cRoot + '/cate');
13 const brandController = require(`${cRoot}/brand`); 13 const brandController = require(`${cRoot}/brand`);
14 const custom = require(`${cRoot}/custom`); 14 const custom = require(`${cRoot}/custom`);
15 const rewrite = require('../../doraemon/middleware/rewrite'); 15 const rewrite = require('../../doraemon/middleware/rewrite');
16 -  
17 const router = express.Router(); // eslint-disable-line 16 const router = express.Router(); // eslint-disable-line
18 17
19 router.get('/', channel.switchChannel, channel.index); // 首页,频道选择页 18 router.get('/', channel.switchChannel, channel.index); // 首页,频道选择页
@@ -45,4 +44,5 @@ router.get('/channel/2fb054e8315300a1ae1f80c3a4fda862.html', custom.zhihui); @@ -45,4 +44,5 @@ router.get('/channel/2fb054e8315300a1ae1f80c3a4fda862.html', custom.zhihui);
45 // 自定义频道 44 // 自定义频道
46 router.get('/channel/:id.html', custom.index); 45 router.get('/channel/:id.html', custom.index);
47 46
  47 +
48 module.exports = router; 48 module.exports = router;
@@ -20,7 +20,7 @@ const detail = require(cRoot + '/detail'); @@ -20,7 +20,7 @@ const detail = require(cRoot + '/detail');
20 const plustar = require(cRoot + '/plustar'); 20 const plustar = require(cRoot + '/plustar');
21 const rss = require(cRoot + '/rss'); 21 const rss = require(cRoot + '/rss');
22 const brand = require(cRoot + '/brand-list'); 22 const brand = require(cRoot + '/brand-list');
23 - 23 +const sitemap = require('../3party/controllers/sitemap');
24 const router = express.Router(); // eslint-disable-line 24 const router = express.Router(); // eslint-disable-line
25 25
26 router.get('/star', star.index); // 星潮教室首页 26 router.get('/star', star.index); // 星潮教室首页
@@ -72,5 +72,6 @@ router.get('/info/detailData', index.detailDynamicData); @@ -72,5 +72,6 @@ router.get('/info/detailData', index.detailDynamicData);
72 72
73 router.get('/plusstar/cate', brand.index); 73 router.get('/plusstar/cate', brand.index);
74 router.get('/plusstar/brandList', brand.brandList); 74 router.get('/plusstar/brandList', brand.brandList);
  75 +router.get('/sitemap.xml', sitemap.siteMap);
75 76
76 module.exports = router; 77 module.exports = router;
@@ -17,6 +17,8 @@ const system = require(`${cRoot}/systemUpdate`); @@ -17,6 +17,8 @@ const system = require(`${cRoot}/systemUpdate`);
17 17
18 const help = require(`${cRoot}/help`); 18 const help = require(`${cRoot}/help`);
19 19
  20 +const sitemap = require('../3party/controllers/sitemap');
  21 +
20 // middlware 22 // middlware
21 23
22 const authGuard = require('../../doraemon/middleware/auth'); 24 const authGuard = require('../../doraemon/middleware/auth');
@@ -43,4 +45,7 @@ router.get('/limitcodeHelp', help.limitcodeHelp);// 如何获得限购码 (APP @@ -43,4 +45,7 @@ router.get('/limitcodeHelp', help.limitcodeHelp);// 如何获得限购码 (APP
43 router.get('/limitcodeColSize', help.limitcodeColSize);// 选择限购码颜色和尺寸 (APP使用) 45 router.get('/limitcodeColSize', help.limitcodeColSize);// 选择限购码颜色和尺寸 (APP使用)
44 router.get('/limitcodeIntro', help.limitcodeIntro);// 什么是限购码 (APP使用) 46 router.get('/limitcodeIntro', help.limitcodeIntro);// 什么是限购码 (APP使用)
45 47
  48 +// 站点地图
  49 +router.get('/sitemap.xml', sitemap.siteMap);
  50 +
46 module.exports = router; 51 module.exports = router;
  1 +/**
  2 + * pc/wap站静态url 用于站点地图
  3 + *
  4 + */
  5 +
  6 +const moment = require('moment');
  7 +const today = moment().format('Y-M-D');
  8 +
  9 +module.exports = {
  10 + m: {
  11 + // 频道
  12 + channel: {
  13 + loc: ['https://m.yohobuy.com/', 'https://m.yohobuy.com/girls/', 'https://m.yohobuy.com/kids/', 'https://m.yohobuy.com/lifestyle/'],
  14 + lastmod: today,
  15 + changefreq: 'daily',
  16 + priority: 0.8
  17 + },
  18 +
  19 + // 新品到着
  20 + new: {
  21 + loc: ['https://m.yohobuy.com/product/boys-new/', 'https://m.yohobuy.com/product/girls-new/', 'https://m.yohobuy.com/product/kids-new/?msort=365', 'https://m.yohobuy.com/product/lifestyle-new/?msort=10'],
  22 + lastmod: today,
  23 + changefreq: 'daily',
  24 + priority: 0.5
  25 + },
  26 +
  27 + // 品牌一览
  28 + brands: {
  29 + loc: ['https://m.yohobuy.com/boys-brands/', 'https://m.yohobuy.com/girls-brands/', 'https://m.yohobuy.com/kids-brands/', 'https://m.yohobuy.com/lifestyle-brands/'],
  30 + lastmod: today,
  31 + changefreq: 'daily',
  32 + priority: 0.5
  33 + },
  34 +
  35 + // 领券中心
  36 + coupon: {
  37 + loc: ['https://m.yohobuy.com/coupon/floor?title=领券中心&share_id=1037&code=b78b32ed81b18dde8ac84fd33602b88b&type=5'],
  38 + lastmod: today,
  39 + changefreq: 'weekly',
  40 + priority: 0.3
  41 + },
  42 +
  43 + // sale
  44 + salse: {
  45 + loc: ['https://m.yohobuy.com/product/boys-sale/', 'https://m.yohobuy.com/product/girls-sale/', 'https://m.yohobuy.com/product/kids-sale/?msort=365', 'https://m.yohobuy.com/product/lifestyle-sale/?msort=10'],
  46 + lastmod: today,
  47 + changefreq: 'daily',
  48 + priority: 0.3
  49 + },
  50 +
  51 + // 分类列表 TODO 链接优化后再推
  52 + // category: {
  53 + // loc: ['https://m.yohobuy.com/cate', 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=373&sort_name=T%E6%81%A4',
  54 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=387&sort_name=%E8%83%8C%E5%BF%83',
  55 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=452&sort_name=POLO',
  56 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=374&sort_name=%E8%A1%AC%E8%A1%AB',
  57 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=418&sort_name=%E5%A5%97%E8%A3%85',
  58 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=397&sort_name=%E5%8D%AB%E8%A1%A3',
  59 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=405&sort_name=%E5%A4%B9%E5%85%8B',
  60 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=401&sort_name=%E6%AF%9B%E8%A1%A3%2F%E9%92%88%E7%BB%87',
  61 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=407&sort_name=%E5%A4%A7%E8%A1%A3%2F%E9%A3%8E%E8%A1%A3',
  62 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=432&sort_name=%E7%BE%BD%E7%BB%92%E6%9C%8D',
  63 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=424&sort_name=%E6%A3%89%E8%A1%A3',
  64 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=457&sort_name=%E8%A5%BF%E8%A3%85',
  65 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=407%2C405%2C397%2C374%2C373%2C401%2C432%2C424%2C457%2C452%2C418%2C387&sort_name=%E4%B8%8A%E8%A1%A3',
  66 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=378&sort_name=%E8%BF%9E%E8%A1%A3%E8%A3%99',
  67 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=379&sort_name=%E5%8D%8A%E8%BA%AB%E8%A3%99',
  68 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=378%2C379&sort_name=%E8%A3%99%E8%A3%85',
  69 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=377&sort_name=%E7%9F%AD%E8%A3%A4',
  70 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=376&sort_name=%E4%BC%91%E9%97%B2%E8%A3%A4',
  71 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=389&sort_name=%E7%89%9B%E4%BB%94%E8%A3%A4',
  72 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=385&sort_name=%E6%89%93%E5%BA%95%E8%A3%A4',
  73 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=472&sort_name=%E8%BF%9E%E4%BD%93%E8%A3%A4',
  74 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=389%2C385%2C377%2C376%2C470&sort_name=%E8%A3%A4%E8%A3%85',
  75 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=383&sort_name=%E5%87%89%E9%9E%8B%2F%E5%87%89%E6%8B%96',
  76 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=375&sort_name=%E4%BC%91%E9%97%B2%2F%E8%BF%90%E5%8A%A8%E9%9E%8B',
  77 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=461&sort_name=%E6%97%B6%E8%A3%85%E9%9E%8B',
  78 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=463&sort_name=%E9%9D%B4%E5%AD%90',
  79 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=383%2C375%2C461%2C463&sort_name=%E9%9E%8B%E9%9D%B4',
  80 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=431%2C433&sort_name=%E5%A4%AA%E9%98%B3%E9%95%9C%2F%E7%9C%BC%E9%95%9C',
  81 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=409&sort_name=%E8%A2%9C%E5%AD%90',
  82 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=415%2C416%2C458%2C459&sort_name=%E5%B8%BD%E5%AD%90',
  83 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=422&sort_name=%E5%9B%B4%E5%B7%BE',
  84 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=431%2C433%2C415%2C416%2C422%2C395%2C428%2C409&sort_name=%E6%9C%8D%E9%85%8D',
  85 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=393&sort_name=%E5%8F%8C%E8%82%A9%E5%8C%85',
  86 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=393%2C411&sort_name=%E5%8C%85%E7%B1%BB',
  87 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=478%2C480%2C270%2C332&sort_name=%E7%94%9F%E6%B4%BB%E6%97%A5%E7%94%A8',
  88 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=482%2C484%2C486&sort_name=%E5%B0%8F%E5%AE%B6%E7%94%B5',
  89 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=488%2C490%2C277&sort_name=%E5%88%9B%E6%84%8F%E7%A4%BC%E5%93%81',
  90 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=353%2C496%2C450&sort_name=%E5%AE%B6%E5%B1%85%E5%AE%B6%E7%BA%BA',
  91 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=275&sort_name=%E5%AE%B6%E5%B1%85%E9%A5%B0%E5%93%81',
  92 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=271&sort_name=%E9%9D%A0%E5%9E%AB%2F%E6%8A%B1%E6%9E%95',
  93 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=274&sort_name=%E9%A6%99%E8%96%B0%2F%E9%A6%99%E6%B0%9B',
  94 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=273&sort_name=%E5%8E%A8%E5%85%B7%2F%E9%A4%90%E5%85%B7',
  95 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=272&sort_name=%E5%82%A8%E7%89%A9%E6%94%B6%E7%BA%B3',
  96 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=272%2C353%2C267%2C268%2C269%2C270%2C271%2C273%2C274%2C275%2C276%2C332%2C333%2C450%2C277&sort_name=%E5%AE%B6%E5%B1%85%E7%94%9F%E6%B4%BB',
  97 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=261&sort_name=%E5%BD%A9%E5%A6%86',
  98 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=263&sort_name=%E9%A6%99%E6%B0%B4',
  99 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=260&sort_name=%E9%9D%A2%E9%83%A8%E6%8A%A4%E8%82%A4',
  100 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=264&sort_name=%E4%B8%AA%E4%BA%BA%E6%8A%A4%E7%90%86',
  101 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=352&sort_name=%E7%BA%B9%E8%BA%AB%E8%B4%B4',
  102 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=263%2C260%2C264%2C261%2C352%2C262&sort_name=%E7%BE%8E%E5%A6%86%2F%E4%B8%AA%E6%8A%A4',
  103 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=514&sort_name=%E6%89%8B%E6%9C%BA',
  104 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=313&sort_name=%E6%89%8B%E6%9C%BA%2Fipad%E5%A3%B3',
  105 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=212&sort_name=%E6%89%8B%E6%9C%BA%E9%85%8D%E4%BB%B6',
  106 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=398&sort_name=%E6%99%BA%E8%83%BD%E8%A3%85%E5%A4%87',
  107 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=492%2C494&sort_name=%E5%BD%B1%E9%9F%B3%E5%A8%B1%E4%B9%90',
  108 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=212%2C313%2C398%2C492%2C494%2C514&sort_name=%E6%95%B0%E7%A0%813C',
  109 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=171&sort_name=%E8%80%B3%E6%9C%BA',
  110 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=185&sort_name=%E7%9B%B8%E6%9C%BA',
  111 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=162&sort_name=%E6%89%8B%E8%A1%A8',
  112 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=211%2C113%2C200&sort_name=%E6%95%B0%E7%A0%81%E9%85%8D%E4%BB%B6',
  113 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=267&sort_name=%E6%9D%AF%E5%AD%90%2F%E6%B0%B4%E5%A3%B6',
  114 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=333&sort_name=%E9%9B%A8%E4%BC%9E%2F%E9%9B%A8%E8%A1%A3',
  115 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=466&sort_name=%E8%87%AA%E8%A1%8C%E8%BD%A6',
  116 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=302%2C343%2C344%2C399&sort_name=%E8%A3%85%E5%A4%87',
  117 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=466%2C302%2C343%2C344%2C399&sort_name=%E8%BF%90%E5%8A%A8%E6%88%B7%E5%A4%96',
  118 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=292%2C449&sort_name=%E7%8E%A9%E5%81%B6',
  119 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=304&sort_name=DIY%2F%E6%A8%A1%E5%9E%8B',
  120 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=498&sort_name=%E6%88%90%E4%BA%BA%E7%94%A8%E5%93%81',
  121 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=292%2C304%2C449%2C498&sort_name=%E7%8E%A9%E5%85%B7%E5%A8%B1%E4%B9%90',
  122 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=184&sort_name=%E5%AD%A6%E4%B9%A0%E7%94%A8%E5%93%81',
  123 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=112&sort_name=%E7%AC%94',
  124 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=111&sort_name=%E6%9C%AC%E5%AD%90',
  125 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=110&sort_name=%E5%9B%BE%E4%B9%A6%2F%E9%9F%B3%E5%83%8F',
  126 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=110%2C111%2C112%2C184&sort_name=%E5%9B%BE%E4%B9%A6%E6%96%87%E5%85%B7',
  127 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=114&sort_name=T%E6%81%A4',
  128 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=116&sort_name=POLO',
  129 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=115%2C516&sort_name=%E8%A1%AC%E8%A1%AB',
  130 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=124%2C516&sort_name=%E5%A4%B9%E5%85%8B',
  131 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=119%2C516&sort_name=%E5%8D%AB%E8%A1%A3',
  132 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=227&sort_name=%E9%98%B2%E9%A3%8E%E5%A4%96%E5%A5%97',
  133 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=173&sort_name=%E7%9A%AE%E8%A1%A3',
  134 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=258&sort_name=%E6%AF%9B%E8%A1%A3%2F%E9%92%88%E7%BB%87',
  135 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=125&sort_name=%E5%A4%A7%E8%A1%A3%2F%E9%A3%8E%E8%A1%A3',
  136 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=122&sort_name=%E8%A5%BF%E8%A3%85',
  137 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=118&sort_name=%E9%A9%AC%E7%94%B2',
  138 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=117&sort_name=%E8%83%8C%E5%BF%83',
  139 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=413&sort_name=%E5%A5%97%E8%A3%85',
  140 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=123&sort_name=%E6%A3%89%E8%A1%A3',
  141 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=121&sort_name=%E7%BE%BD%E7%BB%92%E6%9C%8D',
  142 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=114%2C293%2C116%2C117%2C115%2C119%2C124%2C122%2C413%2C258%2C173%2C227%2C125%2C118%2C121%2C123&sort_name=%E4%B8%8A%E8%A1%A3',
  143 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=129&sort_name=%E4%BC%91%E9%97%B2%E8%A3%A4',
  144 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=131&sort_name=%E7%9F%AD%E8%A3%A4',
  145 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=130&sort_name=%E7%89%9B%E4%BB%94%E8%A3%A4',
  146 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=346&sort_name=%E8%BF%90%E5%8A%A8%E8%A3%A4',
  147 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=133&sort_name=%E6%89%93%E5%BA%95%2F%E7%B4%A7%E8%BA%AB%E8%A3%A4',
  148 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=223&sort_name=%E8%BF%9E%E4%BD%93%E8%A3%A4',
  149 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=348&sort_name=%E8%A5%BF%E8%A3%A4',
  150 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=129%2C222%2C130%2C131%2C346%2C133%2C348&sort_name=%E8%A3%A4%E8%A3%85',
  151 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=147&sort_name=%E4%BC%91%E9%97%B2%2F%E8%BF%90%E5%8A%A8%E9%9E%8B',
  152 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=149&sort_name=%E5%87%89%E9%9E%8B%2F%E5%87%89%E6%8B%96',
  153 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=148&sort_name=%E9%9D%B4%E5%AD%90',
  154 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=151&sort_name=%E6%97%B6%E8%A3%85%E9%9E%8B',
  155 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=231&sort_name=%E4%BF%9D%E5%85%BB%E6%8A%A4%E7%90%86',
  156 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=147%2C149%2C148%2C151%2C231%2C298&sort_name=%E9%9E%8B%E9%9D%B4',
  157 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=152&sort_name=%E5%8F%8C%E8%82%A9%E5%8C%85',
  158 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=153%2C196%2C195%2C197&sort_name=%E6%89%8B%E6%8B%8E%2F%E5%8D%95%E8%82%A9%E5%8C%85',
  159 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=238%2C239&sort_name=%E9%92%B1%E5%8C%85%2F%E5%8D%A1%E5%8C%85',
  160 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=157&sort_name=%E8%85%B0%E5%8C%85',
  161 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=342&sort_name=%E9%82%AE%E5%B7%AE%E5%8C%85',
  162 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=156&sort_name=%E7%94%B5%E8%84%91%E5%8C%85',
  163 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=161%2C300&sort_name=%E5%82%A8%E7%89%A9%E5%8C%85',
  164 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=160&sort_name=%E7%8E%AF%E4%BF%9D%E5%8C%85',
  165 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=233&sort_name=%E5%8C%85%E9%85%8D',
  166 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=341&sort_name=tote%E5%8C%85',
  167 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=340&sort_name=%E6%97%85%E8%A1%8C%E5%8C%85',
  168 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=210&sort_name=%E6%97%85%E8%A1%8C%E7%AE%B1',
  169 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=240%2C349&sort_name=%E6%89%8B%E5%8C%85%2F%E9%92%A5%E5%8C%99%E5%8C%85',
  170 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=152%2C153%2C196%2C238%2C239%2C240%2C349%2C157%2C342%2C156%2C161%2C300%2C160%2C233%2C341%2C340%2C210%2C339%2C351%2C195%2C197&sort_name=%E5%8C%85%E7%B1%BB',
  171 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=72%2C74%2C75%2C76&sort_name=%E9%A6%96%E9%A5%B0',
  172 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331&sort_name=%E5%B8%BD%E5%AD%90',
  173 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=162&sort_name=%E6%89%8B%E8%A1%A8',
  174 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=142&sort_name=%E8%A2%9C%E5%AD%90',
  175 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=77%2C79%2C80%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334&sort_name=%E9%85%8D%E9%A5%B0',
  176 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=78%2C199&sort_name=%E7%9A%AE%E5%B8%A6',
  177 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=186%2C235&sort_name=%E5%A4%AA%E9%98%B3%E9%95%9C%2F%E7%9C%BC%E9%95%9C',
  178 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=316&sort_name=%E5%9B%B4%E5%B7%BE',
  179 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=320&sort_name=%E6%89%8B%E5%B8%95',
  180 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=321&sort_name=%E4%B8%9D%E5%B7%BE',
  181 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=164&sort_name=%E6%89%8B%E5%A5%97',
  182 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=317&sort_name=%E6%8A%AB%E8%82%A9',
  183 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=186%2C235%2C163%2C224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331%2C72%2C74%2C75%2C76%2C142%2C77%2C78%2C79%2C80%2C199%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334%2C162%2C316%2C320%2C164%2C317%2C295%2C321&sort_name=%E6%9C%8D%E9%85%8D',
  184 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=311&sort_name=%E5%86%85%E8%A3%A4',
  185 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=357&sort_name=%E5%AE%B6%E5%B1%85%E6%9C%8D',
  186 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=311%2C357%2C359&sort_name=%E5%86%85%E8%A1%A3%2F%E5%AE%B6%E5%B1%85%E6%9C%8D',
  187 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=264&sort_name=%E4%B8%AA%E4%BA%BA%E6%8A%A4%E7%90%86',
  188 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=352&sort_name=%E7%BA%B9%E8%BA%AB%E8%B4%B4',
  189 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=263&sort_name=%E9%A6%99%E6%B0%B4',
  190 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=260&sort_name=%E9%9D%A2%E9%83%A8%E6%8A%A4%E7%90%86',
  191 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=261&sort_name=%E5%BD%A9%E5%A6%86',
  192 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=263%2C260%2C264%2C261%2C352%2C262%2C265&sort_name=%E7%BE%8E%E5%A6%86%2F%E4%B8%AA%E6%8A%A4',
  193 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=114&sort_name=T%E6%81%A4',
  194 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=115%2C516&sort_name=%E8%A1%AC%E8%A1%AB',
  195 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=119&sort_name=%E5%8D%AB%E8%A1%A3',
  196 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=124%2C516&sort_name=%E5%A4%B9%E5%85%8B',
  197 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=258&sort_name=%E6%AF%9B%E8%A1%A3%2F%E9%92%88%E7%BB%87',
  198 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=125&sort_name=%E5%A4%A7%E8%A1%A3%2F%E9%A3%8E%E8%A1%A3',
  199 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=173&sort_name=%E7%9A%AE%E8%A1%A3',
  200 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=227&sort_name=%E9%98%B2%E9%A3%8E%E5%A4%96%E5%A5%97',
  201 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=122&sort_name=%E8%A5%BF%E8%A3%85',
  202 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=118&sort_name=%E9%A9%AC%E7%94%B2',
  203 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=121%2C123&sort_name=%E6%A3%89%E6%9C%8D',
  204 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=121&sort_name=%E7%BE%BD%E7%BB%92%E6%9C%8D',
  205 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=413&sort_name=%E5%A5%97%E8%A3%85',
  206 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=227%2C173%2C125%2C258%2C121%2C123%2C119%2C124%2C118%2C122%2C115%2C117%2C114%2C293%2C116%2C413&sort_name=%E4%B8%8A%E8%A1%A3',
  207 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=134&sort_name=%E8%BF%9E%E8%A1%A3%E8%A3%99',
  208 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=135&sort_name=%E5%8D%8A%E8%BA%AB%E8%A3%99',
  209 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=134%2C135&sort_name=%E8%A3%99%E8%A3%85',
  210 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=129&sort_name=%E4%BC%91%E9%97%B2%E8%A3%A4',
  211 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=130&sort_name=%E7%89%9B%E4%BB%94%E8%A3%A4',
  212 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=346&sort_name=%E8%BF%90%E5%8A%A8%E8%A3%A4',
  213 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=133&sort_name=%E6%89%93%E5%BA%95%2F%E7%B4%A7%E8%BA%AB%E8%A3%A4',
  214 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=131&sort_name=%E7%9F%AD%E8%A3%A4',
  215 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=348&sort_name=%E8%A5%BF%E8%A3%A4',
  216 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=223&sort_name=%E8%BF%9E%E4%BD%93%E8%A3%A4',
  217 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=348%2C346%2C131%2C133%2C129%2C130&sort_name=%E8%A3%A4%E8%A3%85',
  218 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=147&sort_name=%E4%BC%91%E9%97%B2%2F%E8%BF%90%E5%8A%A8%E9%9E%8B',
  219 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=151&sort_name=%E6%97%B6%E8%A3%85%E9%9E%8B',
  220 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=148&sort_name=%E9%9D%B4%E5%AD%90%2F%E9%AB%98%E5%B8%AE%E9%9E%8B',
  221 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=149&sort_name=%E5%87%89%E9%9E%8B%2F%E5%87%89%E6%8B%96',
  222 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=231&sort_name=%E4%BF%9D%E5%85%BB%E6%8A%A4%E7%90%86',
  223 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=147%2C149%2C148%2C151%2C231%2C508&sort_name=%E9%9E%8B%E9%9D%B4',
  224 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=152&sort_name=%E5%8F%8C%E8%82%A9%E5%8C%85',
  225 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=153%2C195%2C196%2C197&sort_name=%E6%89%8B%E6%8B%8E%2F%E5%8D%95%E8%82%A9%E5%8C%85',
  226 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=238%2C239&sort_name=%E9%92%B1%E5%8C%85%2F%E5%8D%A1%E5%8C%85',
  227 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=240%2C349&sort_name=%E6%89%8B%E5%8C%85%2F%E9%92%A5%E5%8C%99%E5%8C%85',
  228 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=157&sort_name=%E8%85%B0%E5%8C%85',
  229 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=342&sort_name=%E9%82%AE%E5%B7%AE%E5%8C%85',
  230 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=156&sort_name=%E7%94%B5%E8%84%91%E5%8C%85',
  231 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=161%2C300&sort_name=%E5%82%A8%E7%89%A9%E5%8C%85',
  232 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=160&sort_name=%E7%8E%AF%E4%BF%9D%E5%8C%85',
  233 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=233&sort_name=%E5%8C%85%E9%85%8D',
  234 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=341&sort_name=tote%E5%8C%85',
  235 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=340&sort_name=%E6%97%85%E8%A1%8C%E5%8C%85',
  236 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=210&sort_name=%E6%97%85%E8%A1%8C%E7%AE%B1',
  237 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=152%2C153%2C238%2C239%2C240%2C349%2C157%2C342%2C156%2C161%2C300%2C160%2C233%2C341%2C340%2C210%2C339%2C351%2C195%2C196%2C197&sort_name=%E5%8C%85%E7%B1%BB',
  238 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331&sort_name=%E5%B8%BD%E5%AD%90',
  239 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=186%2C235&sort_name=%E5%A4%AA%E9%98%B3%E9%95%9C%2F%E7%9C%BC%E9%95%9C',
  240 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=72%2C74%2C75%2C76&sort_name=%E9%A6%96%E9%A5%B0',
  241 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=162&sort_name=%E6%89%8B%E8%A1%A8',
  242 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=77%2C78%2C79%2C80%2C199%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334&sort_name=%E9%85%8D%E9%A5%B0',
  243 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=142&sort_name=%E8%A2%9C%E5%AD%90',
  244 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=164&sort_name=%E6%89%8B%E5%A5%97',
  245 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=317&sort_name=%E6%8A%AB%E8%82%A9',
  246 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=316&sort_name=%E5%9B%B4%E5%B7%BE',
  247 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=320&sort_name=%E6%89%8B%E5%B8%95',
  248 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=321&sort_name=%E4%B8%9D%E5%B7%BE',
  249 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=186%2C235%2C163%2C224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331%2C72%2C74%2C75%2C76%2C142%2C77%2C78%2C79%2C80%2C199%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334%2C162%2C316%2C320%2C164%2C317%2C295%2C321&sort_name=%E6%9C%8D%E9%85%8D',
  250 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=364&sort_name=%E6%96%87%E8%83%B8',
  251 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=311&sort_name=%E5%86%85%E8%A3%A4',
  252 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=357&sort_name=%E5%AE%B6%E5%B1%85%E6%9C%8D',
  253 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=359&sort_name=%E5%AE%B6%E5%B1%85%E9%9E%8B',
  254 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=311%2C364%2C357%2C359&sort_name=%E5%86%85%E8%A1%A3%2F%E5%AE%B6%E5%B1%85%E6%9C%8D',
  255 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=263&sort_name=%E9%A6%99%E6%B0%B4',
  256 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=264&sort_name=%E4%B8%AA%E4%BA%BA%E6%8A%A4%E7%90%86',
  257 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=261&sort_name=%E5%BD%A9%E5%A6%86',
  258 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=352&sort_name=%E7%BA%B9%E8%BA%AB%E8%B4%B4',
  259 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=263%2C264%2C260%2C261%2C262%2C265%2C352&sort_name=%E7%BE%8E%E5%A6%86%2F%E4%B8%AA%E6%8A%A4'],
  260 + // lastmod: today,
  261 + // changefreq: 'daily',
  262 + // priority: 0.3
  263 + // },
  264 +
  265 + item: {
  266 + loc: [],
  267 + lastmod: today,
  268 + changefreq: 'daily',
  269 + priority: 0.3
  270 + }
  271 + },
  272 + guang: {
  273 + loc: ['https://guang.m.yohobuy.com/?gender=1%2C3', 'https://guang.m.yohobuy.com/?gender=2%2C3', 'https://guang.m.yohobuy.com/?gender=1%2C2%2C3', 'https://guang.m.yohobuy.com/?id=2&name=%E6%90%AD%E9%85%8D', 'https://guang.m.yohobuy.com/?id=4', 'http://guang.m.yohobuy.com/?id=0', 'https://guang.m.yohobuy.com/?id=1', 'https://guang.m.yohobuy.com/?id=3', 'https://guang.m.yohobuy.com/?id=5',
  274 + 'https://guang.m.yohobuy.com/guang/author-8168253/', 'https://guang.m.yohobuy.com/guang/author-8168291/', 'https://guang.m.yohobuy.com/guang/author-8168283/', 'https://guang.m.yohobuy.com/guang/author-8168239/', 'https://guang.m.yohobuy.com/guang/author-8168287/', 'https://guang.m.yohobuy.com/guang/author-8168287/', 'https://guang.m.yohobuy.com/guang/author-8168259/', 'https://guang.m.yohobuy.com/guang/author-7823335/', 'https://guang.m.yohobuy.com/guang/author-8123505/',
  275 + 'https://guang.m.yohobuy.com/guang/author-6875335/', 'https://guang.m.yohobuy.com/guang/author-8168275/', 'https://guang.m.yohobuy.com/guang/author-8168289/', 'https://guang.m.yohobuy.com/guang/author-8168257/', 'https://guang.m.yohobuy.com/guang/author-8168265/', 'https://guang.m.yohobuy.com/guang/author-8168271/', 'https://guang.m.yohobuy.com/guang/author-8168227/', 'https://guang.m.yohobuy.com/guang/author-8168244/', 'https://guang.m.yohobuy.com/guang/author-8168255/',
  276 + 'https://guang.m.yohobuy.com/guang/author-8168248/', 'https://guang.m.yohobuy.com/guang/author-380463/'],
  277 + lastmod: today,
  278 + changefreq: 'daily',
  279 + priority: 0.3
  280 + }
  281 +};
@@ -49,6 +49,7 @@ @@ -49,6 +49,7 @@
49 "request": "^2.81.0", 49 "request": "^2.81.0",
50 "request-promise": "^4.2.1", 50 "request-promise": "^4.2.1",
51 "semver": "^5.3.0", 51 "semver": "^5.3.0",
  52 + "sitemap": "^1.12.0",
52 "uuid": "^3.0.1", 53 "uuid": "^3.0.1",
53 "xml2js": "^0.4.17", 54 "xml2js": "^0.4.17",
54 "yoho-express-session": "^2.0.0", 55 "yoho-express-session": "^2.0.0",