🎈 perf: 优化竹白优先展示最新

This commit is contained in:
zhiyu1998 2023-04-14 11:11:31 +08:00
parent 1148d24ef5
commit e075b86d18

View File

@ -394,16 +394,18 @@ export class query extends plugin {
) )
.then(async resp => { .then(async resp => {
const res = resp.data.data; const res = resp.data.data;
const content = await res.map(item => { const content = res
const { pn, pa, zn, lu, pu, pq, aa, hl } = item; .sort((a, b) => b.luSort - a.luSort)
const template = `标题:${pn}\n${pa}\n期刊:${zn}\n发布日期距今:${lu}\n链接1${pu}\n链接2${pq}\n\n 大致描述:${hl .map(item => {
.join("\n") const { pn, pa, zn, lu, pu, pq, aa, hl } = item;
.replace(/<\/?font[^>]*>/g, "")}`; const template = `标题:${pn}\n${pa}\n期刊:${zn}\n发布日期距今:${lu}\n链接1${pu}\n链接2${pq}\n\n 大致描述:${hl
return { .join("\n")
message: [segment.image(aa), template], .replace(/<\/?font[^>]*>/g, "")}`;
nickname: this.e.sender.card || this.e.user_id, return {
user_id: this.e.user_id, message: [segment.image(aa), template],
}; nickname: this.e.sender.card || this.e.user_id,
user_id: this.e.user_id,
};
}); });
e.reply(await Bot.makeForwardMsg(content)); e.reply(await Bot.makeForwardMsg(content));
}); });