gaoshp
2024-06-03 6f1ac1da6b6cba5c74f2fb6be82f7e472c4116ee
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
<!--
 * @Date: 2024-05-22 23:37:07
 * @LastEditors: Sneed
 * @LastEditTime: 2024-05-26 15:42:35
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/dnc/station-file/File.vue
-->
<template>
    <el-container>
        <el-header>
            <el-button type="primary">归档</el-button>
        </el-header>
        <el-main>
            <h2>程序</h2>
            <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>
            <h2>文件</h2>
            <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-main>
    </el-container>
</template>
 
<script>
export default {
 
}
</script>
 
<style lang="scss" scoped></style>