提交 e2355325 authored 作者: 李智林's avatar 李智林

法案更新

上级 c5ea0a36
......@@ -195,6 +195,18 @@ const handlePerClick = item => {
window.open(route.href, "_blank");
};
// 处理点击实体名称的方法
const handleClick = item => {
// console.log("点击了实体名称:", item);
const route = router.resolve({
path: "/exportControl/singleSanction",
query: {
id: item.id
}
});
window.open(route.href, "_blank");
};
const selectedDomain = ref(0);
const onlyChina = ref(false);
const domainOptions = [
......
......@@ -16,7 +16,7 @@
<div class="label">发布机构:</div>
<div class="value link">
<img :src="title" alt="" class="icon">
<span>{{ formattedData.postOrgName }} ></span>
<span @click="handleClickDp">{{ formattedData.postOrgName }} ></span>
</div>
</div>
<div class="info-row">
......@@ -233,6 +233,18 @@ const handleCompClick = item => {
window.open(route.href, "_blank");
};
// 跳转发布机构详情页
const handleClickDp = () => {
// console.log("点击了发布机构:", props.data);
const route = router.resolve({
path: "/institution",
query: {
id: props.data.postOrgId
}
});
window.open(route.href, "_blank");
};
// 50%规则子企业弹框逻辑
const subsidiaryDialogVisible = ref(false);
const currentSubsidiaryCompanyName = ref("");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论