wzp
2022-11-21 f29dfb68a705ab9f37ed924fc82d6fd414c1c78c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 国际化工具类
const mescrollI18n = {
    // 默认语言
    def: "zh",
    // 获取当前语言类型
    getType(){
        return uni.getStorageSync("mescroll-i18n") || this.def
    },
    // 设置当前语言类型
    setType(type){
        uni.setStorageSync("mescroll-i18n", type)
    }
}
 
export default mescrollI18n