You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<template>
|
|
|
|
|
<view class="wrap">
|
|
|
|
|
<view class="stabar"></view>
|
|
|
|
|
<view class="secbar">
|
|
|
|
|
<view class="title">知识库</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="mainwrap2">
|
|
|
|
|
|
|
|
|
|
<tabbar :page="page"></tabbar>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import tabbar from "@/components/tabbar/tabbar.vue";
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
page: "",
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
this.page= "know"
|
|
|
|
|
},
|
|
|
|
|
components: {tabbar},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
@import url("@/static/base_css.css");
|
|
|
|
|
</style>
|