Commit 52ec9059 authored by WBY1026's avatar WBY1026

数据统计-课程部分

parent dbc92499
...@@ -2,6 +2,7 @@ import Vue from 'vue' ...@@ -2,6 +2,7 @@ import Vue from 'vue'
import 'normalize.css/normalize.css' // A modern alternative to CSS resets import 'normalize.css/normalize.css' // A modern alternative to CSS resets
import moment from 'moment' import moment from 'moment'
import Element from 'element-ui' import Element from 'element-ui'
import echarts from "echarts";
import './utils/rem.js' // 自适应分辨率 import './utils/rem.js' // 自适应分辨率
// import ElementUI from 'element-ui' // import ElementUI from 'element-ui'
// import './styles/element-variables.scss' // import './styles/element-variables.scss'
...@@ -77,6 +78,7 @@ Vue.prototype.UIUrl = process.env.VUE_APP_UI ...@@ -77,6 +78,7 @@ Vue.prototype.UIUrl = process.env.VUE_APP_UI
Vue.prototype.$ha = halberd Vue.prototype.$ha = halberd
Vue.prototype.$uploadFile = uploadPublic Vue.prototype.$uploadFile = uploadPublic
Vue.prototype.$haveAuth = includePermission Vue.prototype.$haveAuth = includePermission
Vue.prototype.$echarts = echarts;
// set ElementUI lang to EN // set ElementUI lang to EN
Vue.prototype.$axios = xhr Vue.prototype.$axios = xhr
......
<template>
<div class="errLog-manage">
考核视图
</div>
</template>
<script>
import { getDataCache, setDataCache } from '@/assets/js/filterData'
export default {
name: 'assessView',
data() {
return {
}
},
computed: {
},
/** 路由离开前存储筛选条件*/
beforeRouteLeave(to, from, next) {
setDataCache(this.$route.path, this.queryParams)
next()
},
created() {
},
methods: {
}
}
</script>
<style lang="scss" scoped></style>
\ No newline at end of file
This diff is collapsed.
<template>
<div class="errLog-manage">
单位视图
</div>
</template>
<script>
import { getDataCache, setDataCache } from '@/assets/js/filterData'
export default {
name: 'companyView',
data() {
return {
}
},
computed: {
},
/** 路由离开前存储筛选条件*/
beforeRouteLeave(to, from, next) {
setDataCache(this.$route.path, this.queryParams)
next()
},
created() {
},
methods: {
}
}
</script>
<style lang="scss" scoped></style>
\ No newline at end of file
<template>
<div class="errLog-manage">
用户视图
</div>
</template>
<script>
import { getDataCache, setDataCache } from '@/assets/js/filterData'
export default {
name: 'userView',
data() {
return {
}
},
computed: {
},
/** 路由离开前存储筛选条件*/
beforeRouteLeave(to, from, next) {
setDataCache(this.$route.path, this.queryParams)
next()
},
created() {
},
methods: {
}
}
</script>
<style lang="scss" scoped></style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment