提交 3af0b73c authored 作者: coderBryanFu's avatar coderBryanFu

update

上级 88e35ee3
......@@ -2,12 +2,12 @@
<div class="wrapper">
<div class="header">
<div class="header-top">
<div class="header-top-left">{{ "337" }}</div>
<div class="header-top-left">{{ curSurvey.name }}</div>
<div class="header-top-right">
<div class="title">
{{ "337-TA-1443:外国制造的半导体器件及其下游产品和组件" }}
{{curSurvey.title }}
</div>
<div class="time">{{ "2025年7月18日" }}</div>
<div class="time">{{ curSurvey.time }}</div>
</div>
</div>
<div class="header-footer">
......@@ -98,6 +98,33 @@ const handleClickNav = index => {
}
});
};
const surveyList = ref([
{
title: "337-TA-1443:外国制造的半导体器件及其下游产品和组件",
time: '2025年7月18日',
name: '337'
},
{
title: "231-TA-1225:进口药及进口原材料的调查",
time: '2021年9月21日',
name: '337'
},
]);
const curSurvey = ref( {
title: "337-TA-1443:外国制造的半导体器件及其下游产品和组件",
time: '2025年7月18日',
name: '337'
});
onMounted(() => {
if (route.query.id === "232") {
curSurvey.value = surveyList.value[1];
}
});
</script>
<style lang="scss" scoped>
......
......@@ -509,7 +509,9 @@ const getThinkTanks = async () => {
thinkTanks.value = [...mockThinkTankList];
};
const handleClick = tank => {
router.push({ name: "ThinkTankDetail", params: { id: tank.id } });
// router.push({ name: "ThinkTankDetail", params: { id: tank.id } });
const curRoute = router.resolve({ name: "ThinkTankDetail", params: { id: tank.id } });
window.open(curRoute.href, "_blank");
};
// 查看更多风险信号
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论