12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div id="foot">
- <el-row>
- <el-col :span="24" class="main">
- <van-tabbar route>
- <van-tabbar-item icon="home-o" to="/admin/index">统计报表</van-tabbar-item>
- <van-tabbar-item icon="notes-o" to="/adminRefute">科技文章</van-tabbar-item>
- <van-tabbar-item icon="comment-o" to="/adminCommunity">社区话题</van-tabbar-item>
- <van-tabbar-item icon="question-o" to="/adminServe">咨询服务</van-tabbar-item>
- </van-tabbar>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'foot',
- props: {},
- components: {},
- data: function() {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- watch: {
- test: {
- deep: true,
- immediate: true,
- handler(val) {},
- },
- },
- };
- </script>
- <style lang="less" scoped></style>
|