1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <div class="mainContentBox">
- <el-tabs
- v-model="activeName"
- class="demo-tabs"
- type="card"
- @tab-click="handleClick"
- >
- <el-tab-pane label="预齐套" name="first">
- <div class="contentBox">
- <First />
- </div>
- </el-tab-pane>
- <el-tab-pane label="出库" name="second">
- <div v-if="activeName === 'second'" class="contentBox">
- <StorageOut />
- </div>
- </el-tab-pane>
- <el-tab-pane label="Third" name="third">
- <div class="contentBox">
- <Third />
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- </template>
- <script lang="ts" setup>
- import First from "./components/first.vue";
- import StorageOut from "@/views/storage-out/index.vue";
- import Third from "./components/third.vue";
- import { TabsPaneContext } from "element-plus";
- const activeName = ref("first");
- const handleClick = (tab: TabsPaneContext, event: Event) => {};
- </script>
- <style lang="scss" scoped>
- :deep(.el-tabs--card > .el-tabs__header .el-tabs__nav) {
- background: rgba(0, 0, 0, 0.1);
- border-radius: 16px 16px 16px 16px;
- overflow: hidden;
- border: 0;
- }
- :deep(.el-tabs--card > .el-tabs__header) {
- height: 80px;
- border: 0;
- overflow: hidden;
- border-radius: 16px 16px 16px 16px;
- }
- :deep(.el-tabs--card > .el-tabs__header .el-tabs__item) {
- width: 290px;
- height: 80px;
- border-radius: 0;
- font-weight: 500;
- font-size: 24px;
- overflow: hidden;
- background: transparent;
- border-color: transparent;
- }
- :deep(.el-tabs--card > .el-tabs__header .el-tabs__item.is-active) {
- background: white;
- border-radius: 16px 16px 16px 16px;
- border-color: transparent;
- overflow: hidden;
- }
- .contentBox {
- height: calc(100vh - 199px);
- }
- </style>
|