Showing
2 changed files
with
2 additions
and
2 deletions
| @@ -87,7 +87,7 @@ export struct HorizontalStrokeCardThreeTwoRadioForMoreComponent { | @@ -87,7 +87,7 @@ export struct HorizontalStrokeCardThreeTwoRadioForMoreComponent { | ||
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | showMore() { | 89 | showMore() { |
| 90 | - return !!this.compDTO.dataSourceType || !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '') | 90 | + return (!!this.compDTO.dataSourceType && this.compDTO.dataSourceType !== 'OBJECT_POS') || !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '') |
| 91 | } | 91 | } |
| 92 | 92 | ||
| 93 | build() { | 93 | build() { |
| @@ -100,7 +100,7 @@ export struct LiveHorizontalCardComponent { | @@ -100,7 +100,7 @@ export struct LiveHorizontalCardComponent { | ||
| 100 | } | 100 | } |
| 101 | 101 | ||
| 102 | showMore() { | 102 | showMore() { |
| 103 | - return !!this.compDTO.dataSourceType || !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '') | 103 | + return (!!this.compDTO.dataSourceType && this.compDTO.dataSourceType !== 'OBJECT_POS') || !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '') |
| 104 | } | 104 | } |
| 105 | 105 | ||
| 106 | 106 |
-
Please register or login to post a comment