diff --git a/lib/v2/gov/sichuan/deyang/mztoday.js b/lib/v2/gov/sichuan/deyang/mztoday.js index 5eded1a75..d6edbdde7 100644 --- a/lib/v2/gov/sichuan/deyang/mztoday.js +++ b/lib/v2/gov/sichuan/deyang/mztoday.js @@ -92,11 +92,13 @@ const basicInfoDict = { const getInfoUrlList = async (url) => { const response = await got(url); const $ = cheerio.load(response.data); - const infoList = $('div.sl').toArray().map((item) => ({ - title: $('a', item).attr('title'), - url: `${rootUrl}${$('a', item).attr('href')}`, - pubDate: parseDate(timezone($('div > div:nth-child(4)', item).html().trim()), +8), - })); + const infoList = $('div.sl') + .toArray() + .map((item) => ({ + title: $('a', item).attr('title'), + url: `${rootUrl}${$('a', item).attr('href')}`, + pubDate: parseDate(timezone($('div > div:nth-child(4)', item).html().trim()), +8), + })); return infoList; };