|
@@ -0,0 +1,135 @@
|
|
|
|
+<!--左侧二级菜单树-->
|
|
|
|
+<template>
|
|
|
|
+ <div class="sub-menu-main">
|
|
|
|
+ <template v-for="(item, index) in menus">
|
|
|
|
+ <div @click="$router.push(item.url)">
|
|
|
|
+ {{item.name}}
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script lang="ts">
|
|
|
|
+import {
|
|
|
|
+ defineComponent,
|
|
|
|
+ computed,
|
|
|
|
+ onMounted,
|
|
|
|
+ ref,
|
|
|
|
+ reactive,
|
|
|
|
+ watch,
|
|
|
|
+ getCurrentInstance,
|
|
|
|
+ ComponentInternalInstance,
|
|
|
|
+ toRefs,
|
|
|
|
+ nextTick
|
|
|
|
+} from 'vue'
|
|
|
|
+import {useStore} from 'vuex'
|
|
|
|
+import {useRouter, useRoute} from 'vue-router'
|
|
|
|
+import {copy} from "@/utils/util";
|
|
|
|
+
|
|
|
|
+export default defineComponent({
|
|
|
|
+ name: '',
|
|
|
|
+ components: {},
|
|
|
|
+ props: {
|
|
|
|
+ },
|
|
|
|
+ setup() {
|
|
|
|
+ const store = useStore();
|
|
|
|
+ const router = useRouter();
|
|
|
|
+ const route = useRoute();
|
|
|
|
+ const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
|
|
|
|
+ const state = reactive({
|
|
|
|
+ menus: [
|
|
|
|
+ {name: 'dasd', url: '/ais-test/manage/source'},
|
|
|
|
+ {name: '沙发沙发', url: '/ais-test/manage/params'}
|
|
|
|
+ ]
|
|
|
|
+ })
|
|
|
|
+ onMounted(() => {
|
|
|
|
+ })
|
|
|
|
+ return {
|
|
|
|
+ ...toRefs(state),
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+})
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style scoped lang="scss">
|
|
|
|
+ .current {
|
|
|
|
+ background-color: #0062E9;
|
|
|
|
+ }
|
|
|
|
+ .sub-menu-main {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ overflow-y: auto;
|
|
|
|
+ background: linear-gradient(0deg, #021D78 0%, #0F44B6 100%);
|
|
|
|
+ padding-top: 13px;
|
|
|
|
+ .smm-parent {
|
|
|
|
+ .p-item {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ height: 44px;
|
|
|
|
+ line-height: 1;
|
|
|
|
+ user-select: none;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ .menu-logo {
|
|
|
|
+ margin: 0 13px 0 15px;
|
|
|
|
+ }
|
|
|
|
+ .menu-expend {
|
|
|
|
+ margin: 0 12px 0 auto;
|
|
|
|
+ transition: 0.2s;
|
|
|
|
+ &.active {
|
|
|
|
+ transform: rotate(90deg) !important;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .smm-son {
|
|
|
|
+ .s-item {
|
|
|
|
+ height: 44px;
|
|
|
|
+ padding-left: 46px;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ line-height: 1.2;
|
|
|
|
+ user-select: none;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .smm-parent-not-expend {
|
|
|
|
+ height: 44px;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ .menu-logo {
|
|
|
|
+ margin: 0 13px 0 15px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ :deep(.smm-parent-son) {
|
|
|
|
+ background: #0a369f;
|
|
|
|
+ border: none;
|
|
|
|
+ padding: 0;
|
|
|
|
+ width: auto !important;
|
|
|
|
+ min-width: 0;
|
|
|
|
+ .el-popper__arrow::before {
|
|
|
|
+ background: #0a369f;
|
|
|
|
+ border-color: #0a369f;
|
|
|
|
+ }
|
|
|
|
+ .smm-son {
|
|
|
|
+ .s-item {
|
|
|
|
+ padding: 0 20px;
|
|
|
|
+ height: 44px;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ line-height: 1.2;
|
|
|
|
+ user-select: none;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</style>
|