add dict cache process when start page
parent
081c2a9d9a
commit
68080e46fb
@ -1,12 +1,42 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<router-view/>
|
<router-view v-if="isRouterAlive" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import '@/assets/iconfont/iconfont.css'
|
import '@/assets/iconfont/iconfont.css'
|
||||||
export default {
|
import { initDictToLocalstorage } from '@/api/dict-data'
|
||||||
name: 'App'
|
export default {
|
||||||
|
name: 'App',
|
||||||
|
provide () {
|
||||||
|
return {
|
||||||
|
reload: this.reload,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
isRouterAlive: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
created () {
|
||||||
|
// 初始化数据字典到浏览器本地缓存
|
||||||
|
initDictToLocalstorage(() => {
|
||||||
|
this.isRouterAlive = true
|
||||||
|
})
|
||||||
|
},
|
||||||
|
mounted () {
|
||||||
|
},
|
||||||
|
beforeDestroy () {
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
reload () {
|
||||||
|
this.isRouterAlive = false
|
||||||
|
this.$nextTick(function () {
|
||||||
|
this.isRouterAlive = true
|
||||||
|
})
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue