<!--
|
* @Date: 2024-05-26 22:26:35
|
* @LastEditors: Sneed
|
* @LastEditTime: 2024-05-26 22:40:36
|
* @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/dnc/setting/FTP.vue
|
-->
|
<template>
|
<el-container>
|
<el-header>
|
<el-button type="primary">创建FTP目录</el-button>
|
<el-button type="primary" style="margin-right: auto;">关联工位</el-button>
|
</el-header>
|
<el-main>
|
<el-row :gutter="20" style="width: 100%;">
|
<el-col :span="12">
|
<el-table :data="tableData" style="width: 100%">
|
<el-table-column label="目录名称" prop="" width=""></el-table-column>
|
<el-table-column label="关联工位" prop="" width=""></el-table-column>
|
<el-table-column label="操作" prop="" width=""></el-table-column>
|
</el-table>
|
</el-col>
|
<el-col :span="12">
|
<h2>FTP目录</h2>
|
<div>509</div>
|
</el-col>
|
</el-row>
|
|
</el-main>
|
</el-container>
|
</template>
|
|
<script>
|
export default {
|
|
}
|
</script>
|
|
<style lang="scss" scoped></style>
|