48 lines
929 B
Vue
48 lines
929 B
Vue
|
<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>
|