# encryptPassword

密码加密

# 请求参数

Prop Type Required Default Description
password String Y - 待加密的明文密码字符串

# 参数代码示例

// 加密密码
this.$bridge.encryptPassword({
    password: 'myPassword123'
}).then(res => {
    console.log(res)
})
1
2
3
4
5
6