mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-14 10:32:49 +00:00
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import { nextTick } from 'vue'
|
|
import { currRoute } from '@/utils/common'
|
|
|
|
class Language {
|
|
private i18n: any
|
|
private loadLocale: Array<string> = [] //已加载的语言
|
|
|
|
constructor(i18n: any) {
|
|
this.i18n = i18n
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param locale 设置语言
|
|
*/
|
|
public setI18nLanguage(locale: string) {
|
|
if (this.i18n.mode === 'legacy') {
|
|
this.i18n.global.locale = locale
|
|
} else {
|
|
this.i18n.global.locale = locale
|
|
}
|
|
uni.setLocale(locale)
|
|
}
|
|
|
|
/**
|
|
* 加载语言包
|
|
* @param path
|
|
* @param locale
|
|
* @returns
|
|
*/
|
|
public async loadLocaleMessages(path: string, locale: string) {
|
|
try {
|
|
const file = path == '/' ? 'pages.index.index' : path.replace('/', '').replaceAll('/', '.')
|
|
// 是否已加载
|
|
if (this.loadLocale.includes(`${locale}/${file}`)) {
|
|
this.setI18nLanguage(locale)
|
|
return nextTick()
|
|
}
|
|
this.loadLocale.push(`${locale}/${file}`)
|
|
// 引入语言包文件
|
|
const messages = await import(`./${locale}/${file}.json`)
|
|
this.i18n.global.mergeLocaleMessage(locale, messages.default)
|
|
this.setI18nLanguage(locale)
|
|
return nextTick()
|
|
} catch(e) {
|
|
this.setI18nLanguage(locale)
|
|
return nextTick()
|
|
}
|
|
}
|
|
}
|
|
|
|
export default Language
|