yangchenggong1_wd

desc:放开预约 入口

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