const hotList = async (data = {}) => { let res = await http().get({ url: config.urlList.hotList, // data: data data }); console.log(res) res.list.forEach(v => v.view = v.view.replaceAll("W+", "")); return res }