- Vue 2.7 + Element UI + Webpack 5 前端 - SQL Server 数据库脚本 (script.sql) - 4份技术文档 (技术分析/功能映射/使用说明书/用户操作手册) - 存储过程修复 (fix_生产管理_外协报表_查询.sql)
34 lines
542 B
Vue
34 lines
542 B
Vue
<template>
|
|
<div id="app" @click="updateLastTime()">
|
|
<router-view v-if="isRouterAlive"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App',
|
|
provide() {
|
|
return {
|
|
reload: this.reload
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
isRouterAlive: true
|
|
}
|
|
},
|
|
methods: {
|
|
reload() {
|
|
this.isRouterAlive = false
|
|
this.$nextTick(function() {
|
|
this.isRouterAlive = true
|
|
})
|
|
},
|
|
updateLastTime() {
|
|
this.$store.commit('login/SET_LASTTIME', new Date().getTime())
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|