Showing
3 changed files
with
4 additions
and
1 deletions
| 1 | import MinePageMoreFunctionModel from '../../viewmodel/MinePageMoreFunctionModel' | 1 | import MinePageMoreFunctionModel from '../../viewmodel/MinePageMoreFunctionModel' |
| 2 | import { WDRouterRule, WDRouterPage } from 'wdRouter' | 2 | import { WDRouterRule, WDRouterPage } from 'wdRouter' |
| 3 | import { Params } from 'wdBean'; | 3 | import { Params } from 'wdBean'; |
| 4 | +import { ToastUtils } from 'wdKit/Index'; | ||
| 4 | 5 | ||
| 5 | @Component | 6 | @Component |
| 6 | export default struct MinePageMoreFunctionUI { | 7 | export default struct MinePageMoreFunctionUI { |
| @@ -75,6 +76,8 @@ export default struct MinePageMoreFunctionUI { | @@ -75,6 +76,8 @@ export default struct MinePageMoreFunctionUI { | ||
| 75 | WDRouterRule.jumpWithPage(WDRouterPage.settingPage, params) | 76 | WDRouterRule.jumpWithPage(WDRouterPage.settingPage, params) |
| 76 | }else if (item.msg == "关于") { // 关于 | 77 | }else if (item.msg == "关于") { // 关于 |
| 77 | WDRouterRule.jumpWithPage(WDRouterPage.aboutPage) | 78 | WDRouterRule.jumpWithPage(WDRouterPage.aboutPage) |
| 79 | + }else if (item.msg == "意见反馈") { // 关于 | ||
| 80 | + ToastUtils.shortToast("待开发") | ||
| 78 | } | 81 | } |
| 79 | }) | 82 | }) |
| 80 | .height('117lpx') | 83 | .height('117lpx') |
| @@ -95,7 +95,7 @@ class MinePageDatasModel{ | @@ -95,7 +95,7 @@ class MinePageDatasModel{ | ||
| 95 | } | 95 | } |
| 96 | // this.moreData.push(new MinePageMoreFunctionModel("扫一扫",$r('app.media.mine_scan'))) | 96 | // this.moreData.push(new MinePageMoreFunctionModel("扫一扫",$r('app.media.mine_scan'))) |
| 97 | // this.moreData.push(new MinePageMoreFunctionModel("我的奖品",$r('app.media.mine_mygift'))) | 97 | // this.moreData.push(new MinePageMoreFunctionModel("我的奖品",$r('app.media.mine_mygift'))) |
| 98 | - // this.moreData.push(new MinePageMoreFunctionModel("意见反馈",$r('app.media.mine_suggest'))) | 98 | + this.moreData.push(new MinePageMoreFunctionModel("意见反馈",$r('app.media.mine_suggest'))) |
| 99 | this.moreData.push(new MinePageMoreFunctionModel("设置",$r('app.media.mine_setting'))) | 99 | this.moreData.push(new MinePageMoreFunctionModel("设置",$r('app.media.mine_setting'))) |
| 100 | this.moreData.push(new MinePageMoreFunctionModel("关于",$r('app.media.mine_about'))) | 100 | this.moreData.push(new MinePageMoreFunctionModel("关于",$r('app.media.mine_about'))) |
| 101 | return this.moreData | 101 | return this.moreData |
-
Please register or login to post a comment