This commit is contained in:
2023-03-01 14:55:56 +08:00
parent 00db75e767
commit 0540dc5f6a
8 changed files with 128 additions and 49 deletions

View File

@@ -6,9 +6,9 @@ import store from '../../vuex/store'
export const Dialog = (str) => {
store.dispatch('showAlert', true)
store.dispatch('alertMsg', str)
setTimeout(() => {
store.dispatch('showAlert', false)
}, 30000)
// setTimeout(() => {
// store.dispatch('showAlert', false)
// }, 30000)
}
/**