文件路径: sub-packages/diy/diyPage/components/home-comb-top.vue




// 获取当前页面路径(不含参数)
getCurrentPagePath() {
const pages = getCurrentPages();
if (pages.length === 0) return '';
return '/' + pages[pages.length - 1].route;
},// 判断链接是否是微页面链接
const link = this.getCurrentPagePath();
const isMicroPageLink = link => link.startsWith(MICRO_PAGE_PATH);
that.isSmallLink = isMicroPageLink(link)
