8012b2e8 by lihua

修改登记主体公司的显示样式

1 parent 2ef5e7a2
......@@ -308,6 +308,10 @@ onActivated(() => {
if (detailInfo.value?.damName) {
if (fullPath === route.fullPath) {
document.title = `详情-${detailInfo.value?.damName}`;
let tab: any = userStore.tabbar.find((tab: any) => tab.fullPath === fullPath);
if (tab) {
tab.meta.title = `详情-${detailInfo.value?.damName}`;
}
}
}
if (assetStore.isRefreshDamCatalog) {
......
......@@ -720,6 +720,7 @@ const handleUploadClose = (itemGuid) => {
font-size: 14px;
color: #999999;
line-height: 21px;
white-space: nowrap;
}
.right {
......@@ -727,6 +728,10 @@ const handleUploadClose = (itemGuid) => {
color: #212121;
line-height: 21px;
font-weight: 400;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-left: 2px;
}
}
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!