修改发送电子钥匙流程
This commit is contained in:
parent
1e746bc971
commit
21a587d9ad
@ -157,7 +157,15 @@ export default {
|
|||||||
this.backAndToast('钥匙已发送')
|
this.backAndToast('钥匙已发送')
|
||||||
} else if(code === 425) {
|
} else if(code === 425) {
|
||||||
this.pending = false
|
this.pending = false
|
||||||
await this.createKey(type, true)
|
uni.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: `是否发送电子钥匙给未注册账号\n${ params.receiverUsername }`,
|
||||||
|
success: async (res) => {
|
||||||
|
if (res.confirm) {
|
||||||
|
await this.createKey(type, true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: message,
|
title: message,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user