Files
ClassContent/项目合集/最新写真app/fontend/js/serve/hot.js
2025-03-16 23:01:07 +08:00

12 lines
287 B
JavaScript

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
}