|
@@ -1,12 +1,9 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="thirdMenu">
|
|
|
|
|
- <a-tabs v-model:activeKey="current"
|
|
|
|
|
- @change="menuClick">
|
|
|
|
|
- <a-tab-pane :key="String(index)"
|
|
|
|
|
- v-for="(item, index) in list"
|
|
|
|
|
- :tab="item[value]"> </a-tab-pane>
|
|
|
|
|
- </a-tabs>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="thirdMenu">
|
|
|
|
|
+ <a-tabs v-model:activeKey="current" @change="menuClick">
|
|
|
|
|
+ <a-tab-pane :key="String(index)" v-for="(item, index) in list" :tab="item[value]"></a-tab-pane>
|
|
|
|
|
+ </a-tabs>
|
|
|
|
|
+ </div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
@@ -105,5 +102,11 @@ export default defineComponent({
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+.layout-bottom {
|
|
|
|
|
+ .thirdMenu {
|
|
|
|
|
+ .position(absolute, auto, 0, 0, 0);
|
|
|
|
|
+ z-index: 2;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
</style
|
|
</style
|
|
|
>;
|
|
>;
|