【前端】纸掌柜h5端
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.

14 lines
266 B

// 框架方法封装
const tabList = ['client','trade','mall','mine']
/**
* @param {string} 跳转的tabBar页面
* @return {null}
*/
export function tab2(tabPage) {
if(tabList.includes(tabPage)) {
uni.switchTab({
url:`/pages/${tabPage}/index`
})
}
}