diff --git a/pages/createKey/createKey.vue b/pages/createKey/createKey.vue index fc327aa..f6d9f4e 100644 --- a/pages/createKey/createKey.vue +++ b/pages/createKey/createKey.vue @@ -157,7 +157,15 @@ export default { this.backAndToast('钥匙已发送') } else if(code === 425) { 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 { uni.showToast({ title: message,