You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
282 B
9 lines
282 B
/**
|
|
* @description: 获取当前页的url
|
|
* @return {String}
|
|
*/
|
|
export default function getCurrentPagePath() {
|
|
const pages = getCurrentPages(); // 获取加载的页面
|
|
const currentPage = pages[pages.length - 1]; // 获取当前页面的对象
|
|
return currentPage.route;
|
|
}
|
|
|