27 lines
610 B
TypeScript
27 lines
610 B
TypeScript
import pagesJson from '@/pages.json'
|
|
import { translate as t } from '@/locale/index'
|
|
|
|
console.log(pagesJson)
|
|
|
|
/** 判断当前页面是否是tabbar页 */
|
|
export const getIsTabbar = () => {
|
|
if (!Object.keys(pagesJson).includes('tabBar')) {
|
|
return false
|
|
}
|
|
const pages = getCurrentPages()
|
|
const currPath = pages.at(-1).route
|
|
return !!pagesJson.tabBar.list.find((e) => e.pagePath === currPath)
|
|
}
|
|
|
|
/**
|
|
* test i18n in not .vue file
|
|
*/
|
|
export const testI18n = () => {
|
|
console.log(t('app.name'))
|
|
// 下面同样生效
|
|
uni.showModal({
|
|
title: 'i18n 测试',
|
|
content: t('app.name'),
|
|
})
|
|
}
|