陈剑华

fix: 18445 横滑卡-选择不跳转右滑至卡片结尾不该展示查看更多按钮且跳转其他页面

@@ -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