9d6677dd by lihua

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

1 parent 96a7545d
...@@ -307,6 +307,10 @@ onActivated(() => { ...@@ -307,6 +307,10 @@ onActivated(() => {
307 if (detailInfo.value?.damName) { 307 if (detailInfo.value?.damName) {
308 if (fullPath === route.fullPath) { 308 if (fullPath === route.fullPath) {
309 document.title = `详情-${detailInfo.value?.damName}`; 309 document.title = `详情-${detailInfo.value?.damName}`;
310 let tab: any = userStore.tabbar.find((tab: any) => tab.fullPath === fullPath);
311 if (tab) {
312 tab.meta.title = `详情-${detailInfo.value?.damName}`;
313 }
310 } 314 }
311 } 315 }
312 if (assetStore.isRefreshDamCatalog) { 316 if (assetStore.isRefreshDamCatalog) {
......
...@@ -721,6 +721,7 @@ const handleUploadClose = (itemGuid) => { ...@@ -721,6 +721,7 @@ const handleUploadClose = (itemGuid) => {
721 font-size: 14px; 721 font-size: 14px;
722 color: #999999; 722 color: #999999;
723 line-height: 21px; 723 line-height: 21px;
724 white-space: nowrap;
724 } 725 }
725 726
726 .right { 727 .right {
...@@ -728,6 +729,10 @@ const handleUploadClose = (itemGuid) => { ...@@ -728,6 +729,10 @@ const handleUploadClose = (itemGuid) => {
728 color: #212121; 729 color: #212121;
729 line-height: 21px; 730 line-height: 21px;
730 font-weight: 400; 731 font-weight: 400;
732 white-space: nowrap;
733 overflow: hidden;
734 text-overflow: ellipsis;
735 margin-left: 2px;
731 } 736 }
732 } 737 }
733 } 738 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!