32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
const got = require('@/utils/got');
|
|
|
|
module.exports = async (ctx) => {
|
|
const category = ctx.params.category || 0;
|
|
|
|
const response = await got({
|
|
method: 'get',
|
|
url: `https://mall.bilibili.com/mall-c-search/home/new_items/list?pageNum=1&pageSize=20&version=1.0&cityId=0&cateType=${category}`,
|
|
headers: {
|
|
Referer: 'https://mall.bilibili.com/newdate.html?noTitleBar=1&page=new&from=new_product&loadingShow=1',
|
|
},
|
|
});
|
|
|
|
const days = response.data.data.vo.days;
|
|
const items = [];
|
|
days.forEach((day) => {
|
|
items.push(...day.presaleItems);
|
|
});
|
|
|
|
const type = response.data.data.vo.cateTabs.find((item) => item.cateType === response.data.data.vo.currentCateType).cateName;
|
|
|
|
ctx.state.data = {
|
|
title: `会员购新品上架-${type}`,
|
|
link: 'https://mall.bilibili.com/newdate.html?noTitleBar=1&page=new&from=new_product&loadingShow=1',
|
|
item: items.map((item) => ({
|
|
title: item.name,
|
|
description: `${item.name}<br>${item.priceDesc ? `${item.pricePrefix}${item.priceSymbol}${item.priceDesc[0]}` : ''}<br><img src="https:${item.img}"><br><a href="${item.itemUrl}">APP 内打开</a>`,
|
|
link: item.itemUrlForH5,
|
|
})),
|
|
};
|
|
};
|