zhenghy

Merge remote-tracking branch 'origin/main'

... ... @@ -221,6 +221,9 @@ export struct MultiPictureDetailPageComponent {
.backgroundColor('#333333')
.width(54)
.height(24)
.onClick(() => {
this.handleAccention()
})
}
}
... ... @@ -279,7 +282,6 @@ export struct MultiPictureDetailPageComponent {
.height('100%')
.vertical(false)
.autoPlay(false)
.cachedCount(3)
.indicator(false)
.displayCount(1)
.loop(false)
... ... @@ -552,7 +554,7 @@ export struct MultiPictureDetailPageComponent {
attentionCreatorId: this.contentDetailData?.rmhInfo?.rmhId || '', // 被关注用户号主id
// userType: 1,
// userId: '1',
status: 1,
status: this.followStatus == '1' ? 0 : 1,
}
PageRepository.postInteractAccentionOperate(params).then(res => {
console.log(TAG, '关注号主==', JSON.stringify(res.data))
... ...