gaoshp
2024-06-23 fbee7228e2f6e43b417d4c3f03020704831261cd
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
<!--
 * @Date: 2024-05-26 22:19:53
 * @LastEditors: Sneed
 * @LastEditTime: 2024-05-26 22:34:06
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/dnc/setting/index.vue
-->
<template>
    <el-main style="height: 100%;">
        <el-card shadow="never" style="height: 100%;" body-style="height: 100%">
            <el-row style="width: 100%;">
                <el-tabs :tab-position="'left'" class="demo-tabs" style="width: 100%">
                    <el-tab-pane label="FTP设置">
                        <FTP></FTP>
                    </el-tab-pane>
                    <el-tab-pane label="文件目录">
                        <Catalogue></Catalogue>
                    </el-tab-pane>
                </el-tabs>
            </el-row>
 
        </el-card>
    </el-main>
</template>
 
<script>
import FTP from './FTP.vue'
import Catalogue from './catalogue.vue'
export default {
    components: {
        FTP,
        Catalogue
    }
}
</script>
 
<style lang="scss" scoped></style>