# getSystemModel

获取手机系统型号

# 参数代码示例

// 获取手机系统型号
this.$bridge.getSystemModel().then(res => {
    console.log(res)
})
1
2
3
4