# encryptPassword

加密密码

# 请求参数

Prop Type Required Default Description
password String Y - 待加密的明文密码字符串
loginId String Y - 登录人的id

# 接口请求示例

const param = {
    "password": "待加密的明文密码字符串"
    'loginId':''
}
this.$bridge.encryptPassword(param)

# 返回参数

Prop Type Required Default Description
data Object Y {encryptPassword:'xxx'} 待加密的明文密码字符串

# 接口返回示例

{
    data:{encryptPassword:''}
}