Fix(AI):[#3663]输入框中语音输入,未识别到有效语音时,增加提示“没有听清您说了什么,请再说一遍”

This commit is contained in:
lifizer
2025-05-07 17:42:16 +08:00
parent ec0c003ff7
commit c8157c144e
+14 -1
View File
@@ -75,13 +75,26 @@ const force2Decimal = function change2Decimal(value) {
return forceToDecimal(value, 2) return forceToDecimal(value, 2)
} }
const toast = (title = '', position = 'center', success = function() {}) => {
uni.showToast({
title,
mask: false,
icon: 'none',
duration: 2500,
position,
success
})
}
Vue.prototype.$force2Decimal = force2Decimal Vue.prototype.$force2Decimal = force2Decimal
Vue.prototype.$forceToDecimal = forceToDecimal Vue.prototype.$forceToDecimal = forceToDecimal
Vue.config.productionTip = false Vue.config.productionTip = false
App.mpType = 'app' App.mpType = 'app'
Vue.prototype.$store = store Vue.prototype.$store = store
Vue.prototype.$dialog = dialog; Vue.prototype.$dialog = dialog
Vue.prototype.$toast = toast
const app = new Vue(App) const app = new Vue(App)