<!--
|
* @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>
|