Fix(AI):[#3620]权限申请点击拒绝后,再次点击语音输入就不会再弹出权限申请弹窗

This commit is contained in:
lifizer
2025-04-10 16:26:54 +08:00
parent 4810aa7e33
commit d68d4c8773
+11
View File
@@ -179,6 +179,17 @@ export default {
fail: () => { fail: () => {
console.log('获取录音权限失败') console.log('获取录音权限失败')
this.recordPermission = false this.recordPermission = false
uni.showModal({
title: '提示',
content: '需要获取麦克风权限',
confirmText: '前往设置',
confirmColor: '#3D4CF1',
success(res2) {
if (res2.confirm) {
wx.openSetting()
}
}
})
} }
}) })
} else { } else {