123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div id="fenlei">
- <el-col class="swfl">
- <el-image style="width:22px;height:22px;margin:0 5px -5px 0;" :src="src"></el-image>
- <span>分类导航</span>
- </el-col>
- <el-col>
- <el-menu default-active="1" class="el-menu-vertical-demo" @open="handleOpen" @close="handleClose" text-color="#215299" active-text-color="#215299">
- <el-menu-item index="1" v-for="(item, index) in liebiaoList" :key="index" @click="clickUrl(item.id)"
- ><span slot="title">{{ item.name }}</span></el-menu-item
- >
- </el-menu>
- </el-col>
- </div>
- </template>
- <script>
- export default {
- name: 'fenlei',
- props: {
- liebiaoList: null,
- },
- components: {},
- data: () => ({
- src: require('@/assets/swfl.png'),
- }),
- created() {},
- computed: {},
- methods: {
- clickUrl(id) {
- this.$router.push({ path: '/shuju/shujulist' });
- // this.$emit('clickLists', { id });
- },
- handleOpen(key, keyPath) {
- console.log(key, keyPath);
- },
- handleClose(key, keyPath) {
- console.log(key, keyPath);
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .swfl {
- height: 60px;
- width: 240px;
- line-height: 60px;
- background-color: #22529a;
- text-align: center;
- }
- .swfl span {
- font-size: 22px;
- color: #ffffff;
- }
- /deep/.el-menu-item {
- height: 60px;
- text-align: center;
- line-height: 60px;
- border-bottom: 1px dashed;
- font-size: 22px;
- }
- /deep/.el-menu-item:last-child {
- border-bottom: none;
- }
- </style>
|