HarmonyOS 官方或者第三方是否有五级地区选择空间

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
shlp

参考示例:

@Observed
class StringArray extends Array<String> {
}

const cityData: string[][] =
  [['辽宁省', '吉林省', '黑龙江省'], ['沈阳市', '大连市', '长春市'], ['东安区', '西安区', '爱民区'],
    ['小镇1', '小镇2', '小镇3'], ['村1', '村2', '村3']]

@Entry
@Component
struct TabsExample6 {
  private controller: TabsController = new TabsController()
  @State titleArray: Array<string> = ['请选择']
  @State arr: Array<StringArray> = [];

  aboutToAppear(): void {
    this.arr.push(['辽宁省', '吉林省', '黑龙江省']);
  }

  build() {
    Column() {
      Tabs({ barPosition: BarPosition.Start, controller: this.controller }) {
        ForEach(this.arr, (itemArr: StringArray, index: number) => {
          TabContent() {
            Column() {
              ForEach(itemArr, (item: string) => {
                ListItem() {
                  Row() {
                    Text(item).fontSize(16).width('80%').align(Alignment.Start)
                      .fontColor(this.titleArray[index] === item ? '#007DFF' : '#182431')
                  }
                }
                .width('80%').height(30).onClick(() => {
                  if (this.titleArray[index] != item) {
                    this.titleArray[index] = item;
                    if (index < cityData.length - 1) {
                      this.titleArray.splice(index + 1)
                      this.titleArray.push("请选择")
                      this.arr.splice(index + 1)
                      this.arr.push(cityData[index + 1])

                      setTimeout(() => {
                        this.controller.changeIndex(index + 1)
                      }, 100);
                    }
                  }
                })
              }, (item: string) => item)
            }.height("100%").width("100%")
          }
          .tabBar(this.titleArray[index])
        }, (item: string) => item)
      }
      .vertical(false)
      .scrollable(true)
      .barMode(BarMode.Scrollable)
      .barHeight(80)
      .animationDuration(200)
      .onChange((index: number) => {
        console.info(index.toString())
      })
    }
  }
}
分享
微博
QQ
微信
回复
3天前
相关问题
是否支持使用第三方的webview内核
1158浏览 • 1回复 待解决
HarmonyOS 使用第三方应用打开
59浏览 • 1回复 待解决
HarmonyOS 依赖第三方库报错
25浏览 • 1回复 待解决
HarmonyOS如何移植第三方MCU?
9281浏览 • 1回复 待解决
native交叉编译第三方
217浏览 • 1回复 待解决
开发第三方SDK如何编译?
13571浏览 • 2回复 待解决
第三方怎么装鸿蒙系统?
2668浏览 • 1回复 待解决
第三方js库迁移懂的吗?
2554浏览 • 1回复 待解决
HarmonyOS ohpm添加第三方库报错
13浏览 • 1回复 待解决
HarmonyOS 引入第三方Har包问题
28浏览 • 1回复 待解决
HarmonyOS lottie 第三方报错无法使用
97浏览 • 1回复 待解决
如何引入自己的“第三方”库
611浏览 • 1回复 待解决
HarmonyOS第三方sdk bugly平替方案
494浏览 • 1回复 待解决
HarmonyOS 第三方应用安装和卸载广播
444浏览 • 0回复 待解决
鸿蒙哪些支持的第三方UI框架吗?
3615浏览 • 1回复 待解决
图片剪切的第三方框架
240浏览 • 1回复 待解决
HarmonyOS支持的第三方库的列表
1506浏览 • 1回复 待解决
OHPM包管理怎么安装第三方
4518浏览 • 1回复 待解决
HarmonyOS 如何打包类似aar的第三方
111浏览 • 1回复 待解决