From 6c93b86e4fdefc3e64ef91e2d57f4749cf73fc4e Mon Sep 17 00:00:00 2001 From: zz Date: Tue, 25 Feb 2020 00:09:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B5=99=E6=B1=9F=E5=A4=A7=E5=AD=A6?= =?UTF-8?q?=E8=BD=AF=E4=BB=B6=E5=AD=A6=E9=99=A2=E9=A1=B9=E7=9B=AE=E9=93=BE?= =?UTF-8?q?=E6=8E=A5bug=20(#4055)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/routes/universities/zju/cst/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/routes/universities/zju/cst/index.js b/lib/routes/universities/zju/cst/index.js index 79d0c8ce4..2cd81c213 100644 --- a/lib/routes/universities/zju/cst/index.js +++ b/lib/routes/universities/zju/cst/index.js @@ -53,14 +53,14 @@ module.exports = async (ctx) => { }); ctx.state.data = { title: '浙大软件学院-全部通知', - link: host + 'NULL', + link: host, item: items, }; } else { const id = map.get(type).id; ctx.state.data = { title: map.get(type).title, - link: host + `${id}`, + link: host + `${id}` + '/list.htm', item: await getPage(id), }; }