9d6677dd by lihua

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

1 parent 96a7545d
......@@ -307,6 +307,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) {
......
......@@ -721,6 +721,7 @@ const handleUploadClose = (itemGuid) => {
font-size: 14px;
color: #999999;
line-height: 21px;
white-space: nowrap;
}
.right {
......@@ -728,6 +729,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!