k94314517
2024-10-16 17efddc6a667670dca682bf36b51a43e99615e6d
h5/main.js
@@ -16,12 +16,14 @@
Vue.component('navigation', navigation)
Vue.prototype.$store = store
Vue.prototype.$jump = (url) => {uni.navigateTo({url})}
Vue.prototype.$goBack = () => { uni.navigateBack() }
Vue.prototype.$goBack = () => { setTimeout(() => {uni.navigateBack()},300) }
Vue.prototype.showToast = (str) => {
   uni.showToast({
     title: str,
     icon: 'none',
     duration: 2000
   setTimeout(() => {
      uni.showToast({
        title: str,
        icon: 'none',
        duration: 2000
      })
   })
}
Vue.prototype.$eventBus = new Vue()