diff --git a/uni_modules/uni-stat/utssdk/common/utils/pageInfo.uts b/uni_modules/uni-stat/utssdk/common/utils/pageInfo.uts index 76683d7a8fd4a52e52c54f420b4482e474bb84f5..5b4d211ed505fd174da6eda8e530360ee37dff96 100644 --- a/uni_modules/uni-stat/utssdk/common/utils/pageInfo.uts +++ b/uni_modules/uni-stat/utssdk/common/utils/pageInfo.uts @@ -227,10 +227,12 @@ export const get_page_name = (routepath : string) : string => { let page_now = pages.find((p): boolean => p.route == routepath) if (page_now == null) { return '' - } + } + // @ts-ignore page = page_now.vm! } - + + // @ts-ignore const pageStyle = (page.$page as UniPage).getPageStyle() const titleText = pageStyle['navigationBarTitleText'] ?? '' return titleText as string @@ -245,7 +247,8 @@ export const get_page_vm = () : Page | null => { return null } let page = pages[pages.length - 1] - // TODO 正常来说,调用当前方法的地方只在 生命周期内,数组内最少会有一个页面,所以理论上是不存在获取不到的情况的 + // TODO 正常来说,调用当前方法的地方只在 生命周期内,数组内最少会有一个页面,所以理论上是不存在获取不到的情况的 + // @ts-ignore return page.vm }