本篇Sample实现移动支付应用中常见收付款功能。
手机运行效果图如下:
折叠屏运行效果图如下:
tablet运行效果图如下:
├──entry/src/main/ets // 代码区 │ ├──common │ | └──Constants.ets // 常量 │ ├──entryability │ | └──EntryAbility.ets │ ├──pages │ | ├──Home.ets // 首页界面 │ | ├──Index.ets // 入口界面 │ | ├──ReceivePaymentPage.ets // 收付款界面 │ ├──view │ | ├──CashFlowCenterCard.ets // 收款界面底部功能条组件 │ | ├──FunctionCard.ets // 功能卡片 │ | ├──QuickFunctionCardCircle.ets // 快捷功能(圆形) │ | ├──QuickFunctionCardSquare.ets // 快捷功能(矩形) │ | ├──ScanQRCodeDialog.ets // 自定义扫码弹窗 │ | └──XComponentView.ets // 扫码能力封装组件 │ └──viewmodel │ ├──FortunePicksViewModel.ets // 财富精选数据 │ ├──PayHubViewModel.ets // 支付中心数据 │ ├──QuickFunctionsViewModel.ets // 快捷功能数据 │ ├──ReceiveMoneyServiceCardViewModel.ets // 收付款数据 │ └──ServiceCardViewModel.ets // 服务卡片数据 └──entry/src/main/resources // 应用资源目录
不涉及