当前位置:   article > 正文

【HarmonyOS】体验鸿蒙电商平台的未来之旅!

【HarmonyOS】体验鸿蒙电商平台的未来之旅!

           从今天开始,博主将开设一门新的专栏用来讲解市面上比较热门的技术 “鸿蒙开发”,对于刚接触这项技术的小伙伴在学习鸿蒙开发之前,有必要先了解一下鸿蒙,从你的角度来讲,你认为什么是鸿蒙呢?它出现的意义又是什么?鸿蒙仅仅是一个手机操作系统吗?它的出现能够和Android和IOS三分天下吗?它未来的潜力能否制霸整个手机市场呢?

今天实现一个简单的小案例,从零开始讲解如何通过鸿蒙开发实现一个电商平台的案例。

目录

新建项目

登录页面

点击登录

个人中心

首页搭建

Tabs组件


新建项目

首先我们先打开DevEco Studio,点击新建项目:

然后根据自己的情况选择应用,这里我们选择空的 Empty Ability 进行创建:

然后接下来输入自己的项目名称就行,点击finish即可:

运行本地预览器,可以看到我们的初始项目已经跑通:

登录页面

登录页面的构建很简单,我们参考网上的登录页面,简单的构建一下登录页面的画面,这里我使用的图标都是来自阿里云图标库当中,大家可以根据自己的情况在网上寻找资源来构建画面,闲话少说我们直接开始,首先我们在pages文件夹下新建arkts文件Login文件,当作是我们的登录页面,接下来我们开始正式编写相关代码:

因为构建静态页面很简单,也没有什么好讲的,这里我就将静态页面的源代码直接共享出来吧,大家可以自己看一下:

  1. // 登录页面
  2. // 文本框样式
  3. @Extend(TextInput) function InputStyle() {
  4. .placeholderColor('#ff5d7e9d')
  5. .height(60)
  6. .fontSize(20)
  7. .backgroundColor('#ccc')
  8. .width('90%')
  9. .padding({ left: 15 })
  10. .maxLength(10)
  11. }
  12. // 分割线
  13. @Extend(Line) function liseStyle() {
  14. .width('100%')
  15. .height(2)
  16. .backgroundColor('#efefef')
  17. .margin({ top: 10, bottom: 10 })
  18. }
  19. // Text组件的蓝色文本样式
  20. @Extend(Text) function blueTextStyle() {
  21. .fontColor('#ff084d85')
  22. .fontSize(15)
  23. .fontWeight(FontWeight.Bold)
  24. }
  25. @Entry
  26. @Component
  27. struct Login {
  28. @State account: string = '' // 登录账号
  29. @State password: string = '' // 登录密码
  30. @State isShowProgress: boolean = true // 是否显示登录的进度条
  31. // 构建登录按钮
  32. @Builder imageButton(image: Resource) {
  33. // 构建按钮图片,本质上就是在按钮里面增加一个image组件
  34. Button({ type: ButtonType.Circle, stateEffect: true }){ // 圆形按钮,按下按钮有切换颜色效果
  35. Image(image)
  36. }
  37. .height(50).width(50).backgroundColor('#fff')
  38. }
  39. build() {
  40. Column() { // 登录界面的布局
  41. Image($r('app.media.login_logo')) // Logo图片
  42. .width($r('app.float.logo_image_size'))
  43. .height($r('app.float.logo_image_size'))
  44. .margin({
  45. top: $r('app.float.logo_margin_top'),
  46. bottom: $r('app.float.logo_margin_bottom')
  47. })
  48. // 登录标题
  49. Text($r('app.string.login_page'))
  50. .fontSize($r('app.float.page_title_text_size'))
  51. .fontWeight(FontWeight.Medium)
  52. .fontColor($r('app.color.page_title_text_color'))
  53. // 小标题
  54. Text('登录账号以获取更多服务')
  55. .fontSize(20)
  56. .fontColor('#ccc')
  57. .margin({ top: 15, bottom: 25 })
  58. // 账号输入框
  59. TextInput({ placeholder: '请输入账号' })
  60. .InputStyle()
  61. .type(InputType.Number) // 文本行中只能输入数字
  62. .onChange((value: string) => {
  63. this.account = value
  64. })
  65. Line()
  66. .liseStyle()
  67. // 密码输入框
  68. TextInput({ placeholder: '请输入密码' })
  69. .InputStyle()
  70. .type(InputType.Password)
  71. .onChange((value: string) => {
  72. this.password = value
  73. })
  74. Line()
  75. .liseStyle()
  76. // 短信提示与验证码
  77. Row(){
  78. Text('短信验证码登录').blueTextStyle()
  79. Text('忘记密码').blueTextStyle()
  80. }
  81. .width('100%')
  82. .justifyContent(FlexAlign.SpaceBetween)
  83. .padding({ left: 12, right: 12 })
  84. // 登录按钮
  85. Button('登录', { type: ButtonType.Capsule })
  86. .width('75%')
  87. .height(45)
  88. .fontSize(20)
  89. .fontWeight(FontWeight.Bold)
  90. .margin({ top: 60, bottom: 20 })
  91. .onClick(() => {
  92. // 登录事件
  93. })
  94. // 注册账号文本
  95. Text('注册账号')
  96. .fontColor('blue').fontSize(15).fontWeight(FontWeight.Medium)
  97. // 是否显示进度条
  98. if (this.isShowProgress){
  99. LoadingProgress()
  100. .color('red').width(40).height(40).margin({ top: 10 })
  101. }
  102. // 其他方式登录
  103. Text('其他方式登录').fontColor('#ff776f6f').fontSize(18)
  104. .fontWeight(FontWeight.Medium).margin({ top: 5, bottom: 10 })
  105. // 三种登录方式
  106. Row({ space: 40 }){
  107. this.imageButton($r("app.media.wx"))
  108. this.imageButton($r("app.media.tb"))
  109. this.imageButton($r('app.media.qq'))
  110. }
  111. }
  112. .width('100%')
  113. .height('100%')
  114. }
  115. }

最终呈现的效果如下:

关于这个静态页面的构建我简单提一下,对于公共常用的样式,我们可以将其书写在静态资源base当中然后进行调用即可,上文的代码我进行了简单的使用,主要的方式如下:

点击登录

接下来我们给我们静态页面的登录按钮设置点击事件进行登录操作,以及对进度条的显示进行一个设置,当点击登录和进入到正式页面之间的间隔中进行显示这个进度条出来,闲话少说正式开始:

  1. @State isShowProgress: boolean = false // 是否显示登录的进度条
  2. private timeOutId: number = -1 // 控制登录超时的时间变量
  3. // 登录回调事件
  4. Login(): void {
  5. if(this.account === '' || this.password === ''){
  6. promptAction.showToast({ // 开启一个确认弹层
  7. message: '账号密码为空,请重新输入!'
  8. })
  9. } else {
  10. this.isShowProgress = true
  11. if(this.timeOutId == -1) {
  12. this.timeOutId = setTimeout(() => {
  13. // 2秒之后执行的函数
  14. this.isShowProgress = false
  15. this.timeOutId = -1
  16. // 页面跳转
  17. }, 2000)
  18. }
  19. }
  20. }

然后我们在离开页面的时候,对定时器进行一个清除:

  1. // 离开页面要取消定时器
  2. aboutToDisappear() {
  3. clearTimeout(this.timeOutId)
  4. this.timeOutId = -1
  5. }

实现的效果如下:

接下来我们开始实现点击登录按钮后,触发点击事件进行页面的路由跳转,代码如下,关于个人中心页面的搭建,可以继续看下一个标题的内容:

个人中心

接下来开始实现个人中心的页面,个人中心的页面搭建其实也非常简单,这里我们把要存放的图片和相关标题的内容单独抽离出去,形成一个新的类,来获取静态资源,后面需求页面要使用的时候直接调用就可以了,具体代码如下:

  1. interface ItemData {
  2. title: string;
  3. imagePath: Resource;
  4. switch?: boolean;
  5. }
  6. export class DataModel {
  7. // 获取列表数据
  8. getSettingListData(): ItemData[] {
  9. let settingListData: ItemData[] = [
  10. {
  11. title: '推送通知',
  12. imagePath: $r('app.media.1'),
  13. switch: true,
  14. },
  15. {
  16. title: '数据管理',
  17. imagePath: $r('app.media.2'),
  18. switch: false,
  19. },
  20. {
  21. title: '菜单设置',
  22. imagePath: $r('app.media.3'),
  23. switch: false,
  24. },
  25. {
  26. title: '关于个人',
  27. imagePath: $r('app.media.4'),
  28. switch: false,
  29. },
  30. {
  31. title: '清除缓存',
  32. imagePath: $r('app.media.5'),
  33. switch: false,
  34. },
  35. {
  36. title: '隐私协议',
  37. imagePath: $r('app.media.6'),
  38. switch: false,
  39. },
  40. ];
  41. return settingListData;
  42. }
  43. }
  44. export default new DataModel();

关于这些静态资源的图片可以到阿里云图标库上寻找,这里就不再赘述了:

然后接下来我们需要开始正式的书写我们的个人中心页面的代码了,具体静态页面代码如下:

  1. import router from '@ohos.router'
  2. import DataModel from '../../components/DataModel'
  3. import promptAction from '@ohos.promptAction'
  4. // 设置界面
  5. @Entry
  6. @Component
  7. struct MySettings {
  8. @State account: number = 0
  9. onPageShow(){
  10. let acc = router.getParams() as Record<string, number>
  11. if (acc) {
  12. this.account = acc['sendMsg']
  13. }
  14. }
  15. // 构建设置单元格函数
  16. @Builder settingCell(item) {
  17. Row(){
  18. Row({ space: 10 }) {
  19. Image(item.imagePath).width(38).height(38)
  20. Text(item.title).fontSize(25)
  21. }
  22. // 判断switch是否为true
  23. if(!item.switch) {
  24. Image($r('app.media.arrow_right')).width(30).height(30)
  25. } else {
  26. Toggle({ type: ToggleType.Switch, isOn: false }) // 显示一个开关组件
  27. }
  28. }
  29. .justifyContent(FlexAlign.SpaceBetween)
  30. .width('100%')
  31. .padding({ left: 15, right: 15 })
  32. }
  33. build() {
  34. Scroll(){
  35. Column({ space: 12 }){
  36. Column(){ // 创建一个内嵌的列布局
  37. Text('个人中心').fontWeight(FontWeight.Bold).fontSize(40)
  38. .margin({ top: 10 }).padding({ left: 15 })
  39. }
  40. .width('100%')
  41. .alignItems(HorizontalAlign.Start)
  42. // 账户布局
  43. Row(){
  44. Image($r('app.media.account')).width(60).height(60)
  45. Column(){
  46. Text('张三').fontSize(25)
  47. Text(`${this.account.toString()}@163.com`).fontSize(15).margin({ top: 8 })
  48. }
  49. .layoutWeight(2)
  50. .alignItems(HorizontalAlign.Start)
  51. .margin({ left: 30 })
  52. }
  53. .width('100%')
  54. .height(70)
  55. .backgroundColor(Color.White)
  56. .padding({ left: 20, right: 20 })
  57. .borderRadius(20)
  58. .margin({ top: 30 }).alignItems(VerticalAlign.Center)
  59. // 列表布局
  60. List(){
  61. ForEach(DataModel.getSettingListData(), (item, index) => {
  62. ListItem(){
  63. this.settingCell(item)
  64. }
  65. .onClick(() => {
  66. promptAction.showDialog({
  67. message: `第${index + 1}功能:${item.title},还未完成,尽情期待!`
  68. })
  69. })
  70. .height(60)
  71. })
  72. }
  73. .backgroundColor(Color.White)
  74. .width('100%')
  75. .divider({
  76. strokeWidth: 1, // 设置分割线的高度
  77. color: Color.Gray, // 设置分割线的颜色
  78. startMargin: 15, // 设分割线的起始边距
  79. endMargin: 15 // 设置分割线的结束边距
  80. })
  81. .borderRadius(30)
  82. .padding({ top: 15, bottom: 20 })
  83. Blank()
  84. // 退出按钮的布局
  85. Button('退出登录', { type: ButtonType.Capsule })
  86. .width('90%').height(50).fontSize(20).fontColor('red')
  87. .backgroundColor('#ccc').margin({ bottom: 15 })
  88. }
  89. .height('100%')
  90. }
  91. .width('100%')
  92. .height('100%')
  93. }
  94. }

呈现的效果如下所示:

然后接下来我们给退出登录的按钮设置点击事件:

首页搭建

接下来开始实现首页的页面搭建,静态页面的搭建其实很简单,博主也没有什么好讲的说实话,无非就是Grid布局以及Swiper布局的排版一下注意一点就可以了,ok接下来我们开始给出具体代码吧:

  1. import DataModel from '../../components/DataModel'
  2. // 首页
  3. @Entry
  4. @Component
  5. struct Home {
  6. private swiperController: SwiperController = new SwiperController() // 轮播控制器实例
  7. build() {
  8. Scroll(){
  9. Column({ space: 10 }){
  10. Column(){ // 标题
  11. Text('首页').fontWeight(FontWeight.Bold).fontSize(30)
  12. .margin({ top: 10 }).padding({ left: 10 })
  13. }
  14. .width('100%').alignItems(HorizontalAlign.Start)
  15. // 轮播图片
  16. Swiper(this.swiperController){
  17. ForEach(DataModel.getSwiperImage(), (item) => {
  18. // 构建每一张图片
  19. Image(item.imagePath)
  20. .width('100%')
  21. .height(250)
  22. .borderRadius(50)
  23. })
  24. }
  25. .autoPlay(true) // 轮播图自动播放
  26. .margin({ top: 15 })
  27. // 菜单列表
  28. Grid(){
  29. ForEach(DataModel.getFirstGridData(), (item) => {
  30. GridItem(){
  31. Column(){
  32. Image(item.imagePath).width(40).height(40)
  33. Text(item.title).fontSize(15).margin({ top: 5 })
  34. }
  35. }
  36. })
  37. }
  38. .columnsTemplate('1fr 1fr 1fr 1fr') // 设置网格的列模板,每列平分空间
  39. .rowsTemplate('1fr 1fr') // 设置网格的行模板,每行平分空间
  40. .columnsGap(10)
  41. .rowsGap(10)
  42. .padding({ top: 10, bottom: 10 })
  43. .height(200)
  44. .backgroundColor(Color.White)
  45. .borderRadius(50)
  46. // 频道列表
  47. Text('列表').fontSize(20).fontWeight(FontWeight.Bold).width('100%')
  48. .margin({ top: 15 })
  49. Grid(){
  50. ForEach(DataModel.getSecondGridData(), (item) => {
  51. GridItem() {
  52. Column() {
  53. Text(item.title).fontSize(20).fontWeight(FontWeight.Medium)
  54. Text(item.describe).fontSize(15).fontColor('#ccc').margin({ top: 5 })
  55. }
  56. .alignItems(HorizontalAlign.Start) // 两个文本框在水平方向居左对齐
  57. }
  58. .padding({ top: 15, left: 10 }).borderRadius(10)
  59. .align(Alignment.TopStart) // 设置网格项对齐方式为顶部对齐
  60. .backgroundImage(item.imagePath) // 设置网格项背景图像
  61. .backgroundImageSize(ImageSize.Cover) // 设置背景图像尺寸模式为覆盖
  62. .width('100%').height('100%')
  63. })
  64. }
  65. .width('100%').height(300)
  66. .columnsTemplate('1fr 1fr').rowsTemplate('1fr 1fr') // 设置网格的行列模板
  67. .columnsGap(10).rowsGap(10).margin({ bottom: 15 })
  68. }
  69. }
  70. .height('100%')
  71. }
  72. }

最终呈现的效果如下:

Tabs组件

ArkUI开发框架提供了一种页签容器标签Tabs,开发者通过Tabs组件可以很容易的实现内容视图的切换。页签容器 Tabs 的形式多种多样,不同的页面设计页签不一样,可以把页签设置在底部、顶部或者侧边。

接下来我们创建页面组件index,然后在页面组件当中书写tab页面:

  1. import Home from './Home'
  2. import MySettings from './MySettings'
  3. import router from '@ohos.router'
  4. // app主页,页面组件
  5. @Entry
  6. @Component
  7. struct Index {
  8. @State currentIndex: number = 0 // 当前默认的页签索引号
  9. private account: number
  10. private tabsController: TabsController = new TabsController()
  11. // 接收路由参数
  12. onPageShow(){
  13. let acc = router.getParams() as Record<string, number>
  14. if (acc) {
  15. this.account = acc['sendMsg']
  16. }
  17. }
  18. // 自定义Tabs函数
  19. @Builder TabBuilder(title: string, index: number, selectedImg: Resource, normalImg: Resource) {
  20. Column() {
  21. Image(this.currentIndex == index ? selectedImg : normalImg)
  22. .width(30).height(30)
  23. Text(title).margin({ top: 5 }).fontSize(15)
  24. .fontColor(this.currentIndex == index ? '#008c8c' : '#ccc')
  25. }
  26. .justifyContent(FlexAlign.Center)
  27. .width('100%').height('50')
  28. .onClick(() => {
  29. this.currentIndex = index
  30. this.tabsController.changeIndex(this.currentIndex) // 修改页签的索引
  31. })
  32. }
  33. build() {
  34. Tabs({
  35. barPosition: BarPosition.End, // 页签底部展示
  36. controller: this.tabsController // 页签容器的控制
  37. }){ // 标签容器
  38. // 首页
  39. TabContent(){
  40. Home()
  41. }
  42. .padding({ left: 20, right: 20 }).backgroundColor('#ccc')
  43. .tabBar(this.TabBuilder('首页', 0, $r('app.media.home_active'), $r('app.media.home')))
  44. // 个人中心
  45. TabContent(){
  46. MySettings({ account: this.account })
  47. }
  48. .padding({ left: 20, right: 20 }).backgroundColor('#ccc')
  49. .tabBar(this.TabBuilder('我的', 1, $r('app.media.my_active'), $r('app.media.my')))
  50. }
  51. .animationDuration(0) // 去掉切换页面的动画效果
  52. .scrollable(false) // 去掉滑动效果,只能点击按钮切换界面
  53. .width('100%')
  54. .backgroundColor(Color.White)
  55. .barHeight(50)
  56. .barMode(BarMode.Fixed)
  57. }
  58. }

这里我们需要将之前的Home页面以及MySettings页面进行一个暴露出去:

这里简单提一下,当用户点击登录按钮之后,这里我们需要跳转到index页面的,所以携带的路由参数也是先传递给index页面,然后index页面再传递给子组件MySettings组件当中,这里注意一下:

最终呈现的效果如下:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/100808
推荐阅读
相关标签
  

闽ICP备14008679号