最新鸿蒙HarmonyOS 使用Progress、Toggle开发一个接单界面

Progress 进度条组件,用于显示内容加载或操作处理等进度。

接口
Progress(options: {value: number, total?: number, type?: ProgressType})

Toggle组件提供勾选框样式、状态按钮样式及开关样式。

接口
Toggle(options: { type: ToggleType, isOn?: boolean })

实现的界面。

最新鸿蒙HarmonyOS 使用Progress、Toggle开发一个接单界面_第1张图片
最新鸿蒙HarmonyOS 使用Progress、Toggle开发一个接单界面_第2张图片

代码在这里插入代码片

import { CommonConstants } from ‘…/common/constants/CommonConstants’
import router from ‘@ohos.router’
@Entry
@Component
struct Home {
@State slipmessage: string = ‘等待接单’
@State stacklabel: string = ‘等待’
@State slipcolorwait:Color=Color.Gray
@State value: number = 0
@State circlecolor:Color=Color.Gray
private intervalId:number
@State isOn:boolean=false
@State order_status:Resource=$r(‘app.media.order_receiving_end’)

startTimer() {
if (this.isOn) {
this.intervalId = setInterval(() => {
this.value += 5;
if (this.value > 100) {
this.value =2;
}
}, 500); // 每0.5秒钟执行一次
} else {
this.stopTimer(); // 如果isOn为false,则停止定时器
}
}
stopTimer() {
clearInterval(this.intervalId); // 停止setInterval
}
build() {
Column({space:5}) {
header()
Divider()
Flex({direction:FlexDirection.Row,justifyContent:FlexAlign.Center,wrap:FlexWrap.Wrap}){
Row(){
Stack(){
Progress({ value: this.value, total: 100, type:ProgressType.Ring })
.width(60).color(Color.Red)
.style({ strokeWidth: 3})
Text(this.stacklabel)
}
Text(this.slipmessage).fontSize(20).padding(10).textAlign(TextAlign.Center).width(‘50%’).fontColor(this.slipcolorwait).fontWeight(CommonConstants.TITLE_FONT_WEIGHT)
Toggle({ type: ToggleType.Switch, isOn: false })
.selectedColor(Color.Red)
.switchPointColor(‘#FFFFFF’)
.onChange((isOn: boolean) => {
console.info(‘Component status:’ + isOn)
this.isOn=isOn
if(isOn){
this.slipcolorwait=Color.Black
this.stacklabel=this.slipmessage=‘接单’
this.circlecolor=Color.Red
this.order_status=KaTeX parse error: Expected 'EOF', got '}' at position 89: … }̲else{ …r(‘app.media.order_receiving_end’)
this.stopTimer()
}

          }).width("15%")
        Text("|").fontColor('#cccccc').margin({left:5})
        Column(){
          Image(this.order_status).width(30).margin({bottom:5})
          Text('订单').fontSize(12).fontColor(Color.Gray)
        }.margin({bottom:10,right:5,left:5})
      }.width('100%').backgroundColor(Color.White).height('30%').height("33%")
      eachtitle({toptitle:'100',title:'钱包(元)'})
      eachtitle({toptitle:'100',title:'总订单数'})
      eachtitle({toptitle:'100',title:'总金额(元)'})
      eachtitle({img_src:$r('app.media.tixian_ic'),title:'提现'}).onClick(() => {

        router.pushUrl({
          url:"pages/Withdraw"
        })
      })
      eachtitle({img_src:$r('app.media.gerenzhongxin_ic'),title:'个人中心'}).onClick(()=>{
        router.pushUrl({
          url:"pages/DriverCenter"
        })
      })
      eachtitle({img_src:$r('app.media.shezhi_ic'),title:'设置'}).onClick(()=>{

        router.pushUrl({
          url:"pages/Driverset"
        })
      })
    }.width('96%').height('33%').backgroundColor(Color.White).padding(10)
  map()
  }
  .width('100%').height('100%')
}

}

@Extend(Text) function littleText(){
.fontSize(12).margin({top:10}).fontColor(Color.Grey)
}
@Extend(Image) function imagew(){
.width(30)
}
@Extend(Row) function roww(){
.width(‘33%’).height(‘33%’).justifyContent(FlexAlign.Center)
}

@Component
struct header{
build(){
Row({space:10}){
Blank()
Text(‘首页’).width(‘15%’).decoration({type:TextDecorationType.Underline,color:Color.Red})
Image($r(‘app.media.notice’)).width(‘6%’)
Column(){
Text(‘当日在线’).fontSize(12)
Text(‘1.2小时’).fontSize(12)
}.width(‘20%’)
}.margin({top:10,right:20}).justifyContent(FlexAlign.End).width(‘100%’)
}
}

@Component
struct map{
build(){
Row(){
Text(‘地图’)
}.width(‘96%’).height(‘61%’).backgroundColor(Color.Gray).justifyContent(FlexAlign.Center) .justifyContent(FlexAlign.Center).borderRadius(8)
}
}

@Component
struct eachtitle{
private img_src:Resource
private title:string
private toptitle:string
build(){
Row(){
Column(){
if(this.img_src == null ){
Text(this.toptitle).fontSize(20)
}else{
Image(this.img_src).imagew()
}

    Text(this.title).littleText()
  }
}.roww()  }

}

function msgbox(info:string=‘发生错误’ ){
AlertDialog.show(
{
title: ‘提示’,
message:info,
autoCancel: true,
alignment: DialogAlignment.Bottom,
offset: { dx: 0, dy: -20 },
confirm: {
value: ‘确认’,
action: () => {
console.info(‘Callback when confirm button is clicked’);
}
},
cancel: () => {
console.info(‘Closed callbacks’)
}
}
)
}

你可能感兴趣的:(鸿蒙开发,ArkTS)