123456789101112131415161718192021222324252627282930 |
- <template>
- <div class='wb-dialog-Table'>
- <el-dialog title='综合记录事项' :visible.sync='visible'>
- <el-table :data='tableData' style='width: 100%'>
- <el-table-column label='位置' prop='position' width='50'></el-table-column>
- <el-table-column prop='equipment' label='设备' width='140'></el-table-column>
- <el-table-column prop='thing' label='记录事项' :show-overflow-tooltip='true'></el-table-column>
- </el-table>
- </el-dialog>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- visible: false,
- tableData: []
- }
- },
- methods: {
- open() {
- this.visible = true
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .wb-dialog-Table {
- }
- </style>
|