Showing
4 changed files
with
5 additions
and
4 deletions
| @@ -3,7 +3,6 @@ import InteractMessageViewModel from '../../viewmodel/InteractMessageViewModel'; | @@ -3,7 +3,6 @@ import InteractMessageViewModel from '../../viewmodel/InteractMessageViewModel'; | ||
| 3 | import PageModel from '../../viewmodel/PageModel'; | 3 | import PageModel from '../../viewmodel/PageModel'; |
| 4 | import { CommonConstants, ViewType } from 'wdConstant' | 4 | import { CommonConstants, ViewType } from 'wdConstant' |
| 5 | import { EmptyComponent,WDViewDefaultType } from '../view/EmptyComponent' | 5 | import { EmptyComponent,WDViewDefaultType } from '../view/EmptyComponent' |
| 6 | -import { ContentDTO } from 'wdBean' | ||
| 7 | import NoMoreLayout from './NoMoreLayout' | 6 | import NoMoreLayout from './NoMoreLayout' |
| 8 | import { CustomTitleUI } from '../reusable/CustomTitleUI'; | 7 | import { CustomTitleUI } from '../reusable/CustomTitleUI'; |
| 9 | import { InteractMComponent } from '../InteractMessage/InteractMComponent'; | 8 | import { InteractMComponent } from '../InteractMessage/InteractMComponent'; |
| @@ -15,7 +15,7 @@ export struct CustomBottomFuctionUI { | @@ -15,7 +15,7 @@ export struct CustomBottomFuctionUI { | ||
| 15 | .height('20') | 15 | .height('20') |
| 16 | .margin({right:'31lpx' }) | 16 | .margin({right:'31lpx' }) |
| 17 | 17 | ||
| 18 | - Text(this.isAllSelect?'取消':'全选') | 18 | + Text(this.isAllSelect?'取消全选':'全选') |
| 19 | .fontColor($r('app.color.color_222222')) | 19 | .fontColor($r('app.color.color_222222')) |
| 20 | .backgroundColor(Color.White) | 20 | .backgroundColor(Color.White) |
| 21 | } | 21 | } |
| @@ -330,6 +330,8 @@ export struct OperRowListView { | @@ -330,6 +330,8 @@ export struct OperRowListView { | ||
| 330 | contentList: [{ | 330 | contentList: [{ |
| 331 | contentId: this.contentDetailData?.newsId + '', | 331 | contentId: this.contentDetailData?.newsId + '', |
| 332 | contentType: this.contentDetailData?.newsType + '', | 332 | contentType: this.contentDetailData?.newsType + '', |
| 333 | + relType:this.contentDetailData?.reLInfo?.relType + '', | ||
| 334 | + contentRelId:this.contentDetailData?.reLInfo?.relId + '', | ||
| 333 | }], | 335 | }], |
| 334 | 336 | ||
| 335 | } | 337 | } |
| @@ -70,7 +70,7 @@ struct LaunchInterestsHobbiesPage { | @@ -70,7 +70,7 @@ struct LaunchInterestsHobbiesPage { | ||
| 70 | .width('100%') | 70 | .width('100%') |
| 71 | .height('100%') | 71 | .height('100%') |
| 72 | .backgroundColor(Color.Gray) | 72 | .backgroundColor(Color.Gray) |
| 73 | - .opacity(item.choose?0.7:0) | 73 | + .opacity(item.choose?0.85:0) |
| 74 | .borderRadius(5) | 74 | .borderRadius(5) |
| 75 | } | 75 | } |
| 76 | 76 | ||
| @@ -134,7 +134,7 @@ struct LaunchInterestsHobbiesPage { | @@ -134,7 +134,7 @@ struct LaunchInterestsHobbiesPage { | ||
| 134 | .width('662lpx') | 134 | .width('662lpx') |
| 135 | .height('84lpx') | 135 | .height('84lpx') |
| 136 | .backgroundColor(Color.White) | 136 | .backgroundColor(Color.White) |
| 137 | - .opacity(this.selectCount == 0 ? 0.6 : 0) | 137 | + .opacity(this.selectCount == 0 ? 0.3 : 0) |
| 138 | .borderRadius('10lpx') | 138 | .borderRadius('10lpx') |
| 139 | .onClick(()=>{ | 139 | .onClick(()=>{ |
| 140 | if (this.selectCount == 0) { | 140 | if (this.selectCount == 0) { |
-
Please register or login to post a comment