Skip to content

Commit

Permalink
Merge pull request #23 from mgz0227/dev_2008
Browse files Browse the repository at this point in the history
调整管理界面全选
  • Loading branch information
MaoXiaoone authored May 6, 2024
2 parents 1a3c4ae + 050b11a commit e83dfc2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion entry/src/main/ets/pages/view/BookManagePage.ets
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ struct BookManagePage {
isClear:this.isClear,
EXHIBIT:this.EXHIBIT,
isShowCheck:true,
allCheck:this.allCheck,
allCheck:this.allCheck
// manageDelete:this.manageDelete
})
} else if(this.currentIndex === 1) {
Expand Down
9 changes: 5 additions & 4 deletions entry/src/main/ets/pages/view/bookShelf/IndexShelf.ets
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,11 @@ export default struct IndexShelf {
if (this.GROUP === '标签'){
if (this.currentIndex === 0){
novelPage({
searchValue:this.searchValue
,currentIndex:0,isClear:this.isClear
,EXHIBIT:this.EXHIBIT
,isShowCheck:this.isShowCheck
searchValue:this.searchValue,
currentIndex:0,
isClear:this.isClear,
EXHIBIT:this.EXHIBIT,
isShowCheck:this.isShowCheck
})
.zIndex(0)
} else if(this.currentIndex === 1) {
Expand Down
2 changes: 1 addition & 1 deletion entry/src/main/ets/pages/view/bookShelf/novelPage.ets
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default struct novelPage{
@Link @Watch('onIsClearChange') isClear:boolean
@Prop currentIndex:number
@State lastIndex:number = 9999
@Prop allCheck:boolean = false
@Prop allCheck:boolean
// @Link @Watch('isChangeManageDelete') manageDelete:boolean
@Prop @Watch('onIsEXHIBITChange') EXHIBIT:string
@State checkBookList:BookList[] = []
Expand Down

0 comments on commit e83dfc2

Please sign in to comment.