• This project
    • Loading...
  • Sign in

developOne / harmonyPool

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • harmonyPool
  • ..
  • repository
  • UIUtils.ets
  • 对接comp接口 · 3fca87f5
    3fca87f5 Browse Files
    zhangbo1_wd authored 2024-01-26 11:00:04 +0800
UIUtils.ets 304 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/**
 * 网络请求业务侧工具类
 */
import { BottomNavDTO } from './bean/BottomNavDTO';

export class UIUtils {

  /**
   * 判断是否为我的页面
   */
  static isMine(navItem: BottomNavDTO): boolean {
    if (navItem == null) {
      return false;
    }
    return navItem.type == '2';
  }
}