修改登记主体公司的显示样式
Showing
2 changed files
with
9 additions
and
0 deletions
| ... | @@ -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) { | ... | ... |
| ... | @@ -720,6 +720,7 @@ const handleUploadClose = (itemGuid) => { | ... | @@ -720,6 +720,7 @@ const handleUploadClose = (itemGuid) => { |
| 720 | font-size: 14px; | 720 | font-size: 14px; |
| 721 | color: #999999; | 721 | color: #999999; |
| 722 | line-height: 21px; | 722 | line-height: 21px; |
| 723 | white-space: nowrap; | ||
| 723 | } | 724 | } |
| 724 | 725 | ||
| 725 | .right { | 726 | .right { |
| ... | @@ -727,6 +728,10 @@ const handleUploadClose = (itemGuid) => { | ... | @@ -727,6 +728,10 @@ const handleUploadClose = (itemGuid) => { |
| 727 | color: #212121; | 728 | color: #212121; |
| 728 | line-height: 21px; | 729 | line-height: 21px; |
| 729 | font-weight: 400; | 730 | font-weight: 400; |
| 731 | white-space: nowrap; | ||
| 732 | overflow: hidden; | ||
| 733 | text-overflow: ellipsis; | ||
| 734 | margin-left: 2px; | ||
| 730 | } | 735 | } |
| 731 | } | 736 | } |
| 732 | } | 737 | } | ... | ... |
-
Please register or sign in to post a comment