43 lines
875 B
Vue
43 lines
875 B
Vue
<template>
|
|
<view class="pageContainer">
|
|
<view class="pageContent">
|
|
<!-- <my v-if="tabList[activeTab].plugin=='my'"></my>
|
|
<projectManage v-if="tabList[activeTab].plugin=='projectManage'"></projectManage> -->
|
|
<!-- v-if="tabList[activeTab].plugin=='videoManage'" -->
|
|
<videoManage ></videoManage>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import projectManage from "../projectManage/projectManage"
|
|
import videoManage from "../videoManage/videoManage2.vue"
|
|
import personManage from "../personManage/personManage.vue"
|
|
import my from "../my/my"
|
|
export default {
|
|
components:{projectManage,videoManage,personManage,my},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.pageContainer{
|
|
height: 100%;
|
|
}
|
|
.pageContent{
|
|
padding-bottom: 54rpx;
|
|
height: calc(100% - 54rpx);
|
|
}
|
|
|
|
</style>
|