gaoshp
2024-04-22 5fb43d29f47d9b316414b28ea84a6fab3133b856
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!--
 * @Date: 2024-04-04 21:51:24
 * @LastEditors: Sneed
 * @LastEditTime: 2024-04-09 20:19:15
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/console/base/shift-calendar.vue
-->
<template>
    <el-main style="height: 100%;background-color: #fff;">
            <el-tabs tab-position="top" class="custom-tabs" v-model="activeName">
                <el-tab-pane label="生产日历" name="1">
                    <CalenderTab></CalenderTab>
                </el-tab-pane>
                <el-tab-pane label="班制" name="2">
                    <ShiftsystemVue></ShiftsystemVue>
                </el-tab-pane>
            </el-tabs>
    </el-main>
</template>
<script>
    import CalenderTab from './CalenderTab.vue';
import ShiftsystemVue from './Shiftsystem.vue';
    export default {
        components: {
            CalenderTab,
            ShiftsystemVue
        },
        data () {
            return {
                activeName: '1'
            }
        }
    }
</script>
<style lang="scss" scoped>
.el-tabs--card {
  height: calc(100vh - 110px - 56px);
  /* overflow-y: auto; */
}
.el-tab-pane {
  height: calc(100vh - 110px - 56px);
  overflow-y: auto;
}
    // .custom-tabs {
    //     height: 500px;
    //     overflow: scroll;
    // }
</style>