张善主

Merge remote-tracking branch 'origin/main'

@@ -91,11 +91,9 @@ export default struct MinePagePersonFunctionUI { @@ -91,11 +91,9 @@ export default struct MinePagePersonFunctionUI {
91 .height('117lpx') 91 .height('117lpx')
92 }) 92 })
93 } 93 }
94 - // .rowsTemplate('1fr 1fr')  
95 - .rowsTemplate('1fr') 94 + .rowsTemplate('1fr 1fr')
96 .columnsTemplate('1fr 1fr 1fr 1fr') 95 .columnsTemplate('1fr 1fr 1fr 1fr')
97 - // .height('234lpx')  
98 - .height('167lpx') 96 + .height('234lpx')
99 .margin({top:'31lpx',left:'23lpx',right:'23lpx' }) 97 .margin({top:'31lpx',left:'23lpx',right:'23lpx' })
100 } 98 }
101 } 99 }
@@ -323,9 +323,10 @@ export struct SearchComponent { @@ -323,9 +323,10 @@ export struct SearchComponent {
323 if(value.videoTotal!=0){ 323 if(value.videoTotal!=0){
324 this.count.push("视频") 324 this.count.push("视频")
325 } 325 }
326 - if(value.activityTotal!=0){  
327 - this.count.push("活动")  
328 - } 326 + //屏蔽活动
  327 + // if(value.activityTotal!=0){
  328 + // this.count.push("活动")
  329 + // }
329 } 330 }
330 this.isGetRequest = true 331 this.isGetRequest = true
331 this.resetSearch() 332 this.resetSearch()
@@ -58,7 +58,7 @@ class MinePageDatasModel{ @@ -58,7 +58,7 @@ class MinePageDatasModel{
58 * 包含名字和图标 58 * 包含名字和图标
59 */ 59 */
60 getPersonalFunctionsData():MinePagePersonalFunctionsItem[]{ 60 getPersonalFunctionsData():MinePagePersonalFunctionsItem[]{
61 - if(this.personalData.length === 7){ 61 + if(this.personalData.length === 5){
62 return this.personalData 62 return this.personalData
63 } 63 }
64 this.personalData.push(new MinePagePersonalFunctionsItem("评论",$r('app.media.mine_comment_icon'))) 64 this.personalData.push(new MinePagePersonalFunctionsItem("评论",$r('app.media.mine_comment_icon')))
@@ -67,7 +67,7 @@ class MinePageDatasModel{ @@ -67,7 +67,7 @@ class MinePageDatasModel{
67 // this.personalData.push(new MinePagePersonalFunctionsItem("历史",$r('app.media.mine_history_icon'))) 67 // this.personalData.push(new MinePagePersonalFunctionsItem("历史",$r('app.media.mine_history_icon')))
68 this.personalData.push(new MinePagePersonalFunctionsItem("消息",$r('app.media.mine_msg_icon'))) 68 this.personalData.push(new MinePagePersonalFunctionsItem("消息",$r('app.media.mine_msg_icon')))
69 // this.personalData.push(new MinePagePersonalFunctionsItem("留言板",$r('app.media.mine_msgboard_icon'))) 69 // this.personalData.push(new MinePagePersonalFunctionsItem("留言板",$r('app.media.mine_msgboard_icon')))
70 - // this.personalData.push(new MinePagePersonalFunctionsItem("预约",$r('app.media.mine_order_icon'))) 70 + this.personalData.push(new MinePagePersonalFunctionsItem("预约",$r('app.media.mine_order_icon')))
71 return this.personalData 71 return this.personalData
72 } 72 }
73 73