Authored by 周少峰

list url

@@ -51,11 +51,11 @@ const listXmlData = () => {// eslint-disable-line @@ -51,11 +51,11 @@ const listXmlData = () => {// eslint-disable-line
51 _.forEach(_.get(result[1], 'headerData.subNavGroup'), val => { 51 _.forEach(_.get(result[1], 'headerData.subNavGroup'), val => {
52 _.forEach(val.subNav, sub => { 52 _.forEach(val.subNav, sub => {
53 if (listPatten.test(sub.link)) { 53 if (listPatten.test(sub.link)) {
54 - listNav.push({url: `https:${sub.link}`, changefreq: 'daily', priority: 0.3}); 54 + listNav.push({url: sub.link, changefreq: 'daily', priority: 0.3});
55 } 55 }
56 _.forEach(_.get(sub, 'thirdNav'), third => { 56 _.forEach(_.get(sub, 'thirdNav'), third => {
57 if (listPatten.test(third.link)) { 57 if (listPatten.test(third.link)) {
58 - listNav.push({url: `https:${third.link}`, changefreq: 'daily', priority: 0.3}); 58 + listNav.push({url: third.link, changefreq: 'daily', priority: 0.3});
59 } 59 }
60 }); 60 });
61 }); 61 });