4c1574a9 by lihua

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

1 parent 24b99ecd
...@@ -308,6 +308,10 @@ onActivated(() => { ...@@ -308,6 +308,10 @@ onActivated(() => {
308 if (detailInfo.value?.damName) { 308 if (detailInfo.value?.damName) {
309 if (fullPath === route.fullPath) { 309 if (fullPath === route.fullPath) {
310 document.title = `详情-${detailInfo.value?.damName}`; 310 document.title = `详情-${detailInfo.value?.damName}`;
311 let tab: any = userStore.tabbar.find((tab: any) => tab.fullPath === fullPath);
312 if (tab) {
313 tab.meta.title = `详情-${detailInfo.value?.damName}`;
314 }
311 } 315 }
312 } 316 }
313 if (assetStore.isRefreshDamCatalog) { 317 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!