k94314517
2023-09-22 3ce2445de1994dc9a77776160caa259749c6d5e3
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