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.

32 lines
505 B

3 years ago
<template>
3 years ago
<view class="wrap">
<view class="stabar"></view>
<view class="secbar">
<view class="title">知识库</view>
</view>
<view class="mainwrap2">
<tabbar :page="page"></tabbar>
3 years ago
</view>
3 years ago
</view>
3 years ago
</template>
<script>
import tabbar from "@/components/tabbar/tabbar.vue";
3 years ago
export default {
data() {
return {
page: "",
3 years ago
};
},
onShow() {
this.page= "know"
},
3 years ago
components: {tabbar},
3 years ago
}
</script>
<style lang="scss">
3 years ago
@import url("@/static/base_css.css");
3 years ago
</style>