鸿蒙 Next:个人中心界面

Screenshot_2024-06-15T172527.png

模型

export class MineViewModel {

  userInfo:UserInfo|undefined
  groups:Array<Array<MineItem>> = []

  constructor() {
    this.getUserInfo()
    this.getMenuItems()
  }

  getMenuItems() {
    let list:Array<Array<MineItem>> = [
      [
        {
          img:$r('app.media.tab_new_select'),
          title:'我的订单',
          desc:'',
          type:MineItemType.order
        },
        {
          img:$r('app.media.tab_new_select'),
          title:'我的中奖',
          desc:'',
          type:MineItemType.winning
        }
      ],
      [
        {
          img:$r('app.media.tab_new_select'),
          title:'会员章程',
          desc:'',
          type:MineItemType.member
        },
        {
          img:$r('app.media.tab_new_select'),
          title:'关于瞬和',
          desc:'',
          type:MineItemType.aboutUs
        },
        {
          img:$r('app.media.tab_new_select'),
          title:'隐私政策',
          desc:'',
          type:MineItemType.privacy
        }
      ],
      [
        {
          img:$r('app.media.tab_new_select'),
          title:'账号设置',
          desc:'',
          type:MineItemType.accountSet
        },
        {
          img:$r('app.media.tab_new_select'),
          title:'账号设置1',
          desc:'',
          type:MineItemType.accountSet
        },
        {
          img:$r('app.media.tab_new_select'),
          title:'账号设置2',
          desc:'',
          type:MineItemType.accountSet
        }
      ]
    ]

    this.groups = list
  }

  getUserInfo(){

    let userInf = new UserInfo()
    userInf.name = "occ"
    userInf.isV = true
    userInf.point = '8'
    this.userInfo = userInf
  }

}

class UserInfo {
  name:string|undefined
  isV:Boolean = false
  avator:string|undefined
  point:string = '0'
}

enum MineItemType {
  unknow = 0,
  order = 1,
  winning,
  member,
  aboutUs,
  privacy,
  accountSet
}

export interface MineItem {
  img:Resource | null
  title:string
  desc:string
  type:MineItemType
}

用户数据模型

@Observed
export class UserInfoModel {
  name:string | undefined
  userToken:string | undefined
  nickName:string |undefined
  img:string|undefined
  sex:string|undefined
  tel:string |undefined
  birthday:string|undefined
  desc:string|undefined
  isVip:boolean|undefined = false
  avatar:string|undefined = ''
  vipDesc:string|undefined = ''
}

界面顶部块

import { Constants } from '../../../common/Constants'
import { UserInfoModel } from '../model/UserInfoModel'
import { router } from '@kit.ArkUI'

@Component
export struct MineNavBarView {

  @Prop userInfo:UserInfoModel

  editBlock:(()=>void)|undefined

  build() {
    Row() {
      Row() {
        Button({ type: ButtonType.Circle, stateEffect: false }) {
          Image(this.userInfo.avatar??$r('app.media.right_head'))
            .size({ width: 80, height: 80 })
            .objectFit(ImageFit.Fill)
            .onComplete(msg=>{

            })
            .onError(()=>{

            })
        }
        .onClick(()=>{
          if (this.editBlock != undefined) {
            this.editBlock()
          }
        })
        .backgroundColor(Color.White)
        .clip(true)

        Blank().width(8)
        Column() {
          Text(this.userInfo.nickName??'佚名')
            .fontColor(Color.Black)
            .fontSize(18)
            .fontWeight(FontWeight.Bold)
            .textAlign(TextAlign.Start)
          Button() {
            Row() {
              Text('V')
                .fontColor(Constants.COLOR_666666)
                .fontSize(16)
                .fontWeight(FontWeight.Bold)
                .margin({ left: 8 })
              Text('普通会员')
                .fontColor(Constants.COLOR_666666)
                .fontSize(14)
                .margin({ left: 8, right: 8 })
            }
            .height(25)
          }
          .buttonStyle(ButtonStyleMode.NORMAL)
          .margin({ top: 6 })
          .clip(true)
        }
        .alignItems(HorizontalAlign.Start)
        .justifyContent(FlexAlign.SpaceAround)
      }
      .height(100)
      .layoutWeight(7)

      Row() {
        Button() {
          Image($r('app.media.account_message_new'))
            .size({ width: 25, height: 25 })
          // .fillColor(Color.Red)//需要svg图片
        }
        .onClick(()=>{
          router.pushUrl({ url: 'pages/message/MessageListPage' })
        })
        .buttonStyle(ButtonStyleMode.NORMAL)
        .padding(4)
        .margin({ right: 12 })
        .clip(true)

        Button() {
          Image($r('app.media.account_setting'))
            .size({ width: 25, height: 25 })
        }
        .onClick(()=>{
          router.pushUrl({ url: 'pages/setting/SettingPage' })
        })
        .buttonStyle(ButtonStyleMode.NORMAL)
        .padding(4)
        .clip(true)

      }
      .layoutWeight(3)
      .justifyContent(FlexAlign.End)
      .height(50)
    }
    .alignItems(VerticalAlign.Top)
    .justifyContent(FlexAlign.SpaceBetween)
    .height(120)
    .padding({ top: 12, left: 13, right: 13, bottom: 13 })
    .backgroundColor(Constants.COLOR_PAGE_BGC)
  }
}

中间卡片

import { Constants } from '../../../common/Constants'
import { UserInfoModel } from '../model/UserInfoModel'

@Component
export struct MineInfoView {

  @Prop userInfo:UserInfoModel
  build() {
    Column(){
      //top
      Row(){
        Row(){
          Image($r('app.media.home_normal'))
            .size({width:30,height:30})
            .objectFit(ImageFit.ScaleDown)
          Text('VIP')
            .fontSize(24)
            .fontWeight(400)
            .fontColor(Constants.HexColorA('ffcc33',0.9))
          Button(){
            Text('5项权益 >')
              .fontColor(Constants.HexColorA('ffcc33',0.9))
              .fontSize(13)
          }
          .height(24)
          .margin({left:12})
          .padding({left:8,top:3,right:8,bottom:3})
          .backgroundColor(Constants.HexColorA('ffcc33',0.5))
          .borderRadius(12)
        }
        Button('升级攻略')
          .buttonStyle(ButtonStyleMode.NORMAL)
          .width(80)
          .height(24)
          .borderWidth(1)
          .fontColor(Constants.HexColorA('ffcc33',0.9))
          .borderColor(Constants.HexColorA('ffcc33',0.9))
          .padding({left:10,bottom:3,right:10,top:3})
      }
      .justifyContent(FlexAlign.SpaceBetween)
      .height(40)
      .width('100%')

      //中
      Text('当前积分: 0' + Constants.screenWidth)
        .fontColor(Constants.HexColorA('ffcc33',0.9))
        .fontSize(16)
        .fontWeight(Color.White)
        .margin({top:12})

      //下
      Row(){
        Column(){
          Progress({ value: 24, total: 100, type: ProgressType.Linear })
            .width('90%')
            .height(4)
            .backgroundColor(Color.White)
            .color(Constants.HexColorA('ffcc33',0.9))
          Text('恭喜您已达到VIP级会员')
            .fontSize(13)
            .fontColor(Constants.HexColorA('ffcc33',0.9))
            .margin({top:6})
        }
        .alignItems(HorizontalAlign.Start)
        .width('60%')

        Text('NO:C000307')
          .fontColor(Constants.HexColorA('ffcc33',0.9))
          .fontSize(13)
          .margin({top:12})
      }
      .margin({top:30})
      .width('100%')
      .justifyContent(FlexAlign.SpaceBetween)

    }
    .width(Constants.SCREEN_WIDTH() - 26.0)
    .margin(13)
    .padding({left:8,top:12,right:8,bottom:12})
    .borderRadius(16)
    .clip(true)
    .backgroundColor(Constants.HexColorA('663300',1))
    .justifyContent(FlexAlign.SpaceBetween)
    .alignItems(HorizontalAlign.Start)
  }
}

界面视图

import { MineItem, MineViewModel } from '../model/MineViewModel'
import { MineInfoView } from './MineInfoView'
import { MineNavBarView } from './MineNavBarView'
import { router } from '@kit.ArkUI'
import { Constants } from '../../../common/Constants'
import { UserInfoModel } from '../model/UserInfoModel'

@Component
export struct MineMainView {

  @Link userInfo:UserInfoModel

  mineViewModel = new MineViewModel()

  scorllView:Scroller = new Scroller()


  @Builder menuGroupItemView(items:MineItem[]) {

    ForEach(items,(subItem:MineItem,subIndex) => {
      ListItem() {
        Column(){
          Row(){
            Row(){
              Image($r('app.media.tab_new_select'))
                .objectFit(ImageFit.ScaleDown)
                .size({width:24,height:24})
              Text(subItem.title)
                .fontSize(14)
                .fontColor(Color.Black)
                .margin({left:12})
            }
            Image($r('app.media.arrow_right_new'))
              .objectFit(ImageFit.ScaleDown)
              .size({width:24,height:16})

          }
          .height(56)
          .width('100%')
          .justifyContent(FlexAlign.SpaceBetween)
          if (subIndex != items.length - 1) {
            Line()
              .height(0.5)
              .backgroundColor(Constants.COLOR_EEEEEE)
              .width('100%')
          }
        }
      }
      .backgroundColor(Color.White)
      .padding({left:12,right:12})
      .onClick(()=> {
        router.pushUrl({url:'pages/mine/ctrl/MyOrderPage'})
      })
    })

  }

  // editUserEvent: (() => void) = ()=>{
  //
  // }
  editUserEvent(){
    router.pushUrl({url:'pages/accountInfo/ctrl/MineInfoPage'})
  }

  build() {
    Stack({ alignContent: Alignment.TopEnd }) {

      Scroll(this.scorllView){
        Column(){
          Column(){
            MineNavBarView({userInfo:this.userInfo,editBlock:this.editUserEvent})

            MineInfoView({userInfo:this.userInfo})
          }
          .justifyContent(FlexAlign.Start)
          .alignItems(HorizontalAlign.Start)
          .width('100%')

          List({space:12}){
            ForEach(this.mineViewModel.groups, (items:Array<MineItem>,index) => {
              ListItemGroup(){
                this.menuGroupItemView(items)
              }
              .borderRadius(16)
              .clip(true)

            },(item:string):string => item)
          }
          .padding({left:13,right:13,top:12,bottom:12})
          // .divider({
          //   strokeWidth: 1,
          //   startMargin: 0,
          //   endMargin: 0,
          //   color: '#ffe9f0f0'
          // })
        }
      }
      .backgroundColor(Constants.COLOR_PAGE_BGC)
      .height('100%')
      .width('100%')
    }
    .height('100%')
    .width('100%')
  }
}

enum MineItemRadiusType {
  top,
  bottom,
  no
}

//自定义样式
@Extend(ListItem) function oprateListItemStyle(radiusType:MineItemRadiusType){
  .borderRadius(radiusType == MineItemRadiusType.top ? {topLeft:16,topRight:16} : (radiusType == MineItemRadiusType.bottom ? {bottomLeft:16,bottomRight:16} : 0))
  .clip(true)

}

页面

import { display } from '@kit.ArkUI';
import { Constants } from '../common/Constants';
import { UserInfoModel } from './accountInfo/model/UserInfoModel';
import { MineMainView } from './accountInfo/view/MineMainView';

@Entry
@Component
export default  struct MinePage {

  @StorageLink(Constants.kStorageLocalUser) localUseInf:UserInfoModel = new UserInfoModel()

  aboutToAppear(): void {
    console.log('========== mine')
    console.log(`=========${Constants.screenWidth}`)

    console.log(`=========${px2vp(display.getDefaultDisplaySync().width)}`)


  }
  onPageShow(): void {
    console.log('========== show')
  }
  build() {
    Column() {
      MineMainView({userInfo:this.localUseInf})
    }
  }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容