kehui/kehui-oa-front/src/pages/NotFound.vue
2024-07-02 20:41:25 +08:00

48 lines
929 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div id="content-container" :class="{'expand-right': expandRight}">
<div class="page-content">
<h3>功能正在努力开发中敬请期待</h3>
</div>
<!--End Page content-->
</div>
</template>
<script type="text/ecmascript-6">
import routerData from '../../router.json'
import DataForm from '../components/form/DataForm.vue'
import DataTable from '../components/DataTable.vue'
import Api from '../server/index.js'
export default {
beforeRouteEnter (to, from, next) {
next(function (vm) {
global.getMenuIndex(vm);
})
},
data (){
return {
expandRight: false
}
},
created () {
},
methods: {
}
}
</script>
<style scoped lang="less" rel="stylesheet/less">
.expand-right {
@media (min-width: 768px) {
padding-left: 0 !important;
}
}
.page-content {
padding: 15px;
}
</style>