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'; } }