参考文章
https://blog.csdn.net/q3254421/article/details/82927860
https://blog.csdn.net/r_17703772792/article/details/87695065
main.js
Vue.prototype.$EventBus = new Vue();
要传值的页面函数
this.$EventBus.$emit('incremented', fileList.time);
接收传值的页面
this.$EventBus.$on('incremented', (res)=>{this.time = res}) // 可以放在 mounted 的里先试试是否可以获取到