@@ -1,5 +1,5 @@
{
"message": "发现有新版本发布,确定更新系统?",
"vendorJsVersion": "",
- "version": 1659662144140
+ "version": 1659682555546
}
@@ -355,7 +355,8 @@ export const asyncRouterMap = [
meta: {
title: '审核通过',
icon: 'monitor',
- hidden: true
+ hidden: true,
+ replaceTab: true
},
]
@@ -345,18 +345,13 @@ export default {
mounted () {
- if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
- this.initPage()
- }
- },
- activated () {
- // 如果是新页签打开或者进入新的子页(例:存在列表第2条数据编辑页页签时再打开第4条数据的编辑页),则重置当前页面
- if (this.$store.state.app.isNewTab || !this.$store.state.app.isNewSubTab) {
+ console.log('mounted')
+ this.initPage()
beforeRouteEnter (to, from, next) {
- next(vm => {})
+ next(vm => {
+ console.log('beforeRouteEnter')
+ })
</script>