zhaowei
2025-01-13 58848b1a18d29929ba84b0336860f258b913070f
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
37
38
39
40
41
42
43
44
45
<template>
  <a-table :columns="columns" :data-source="dataSource" bordered :pagination="false">
 
  </a-table>
</template>
 
<script>
  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
 
  export default {
    name: 'UseNcDocumentEquipmentTableList',
    components: {},
    mixins: [JeecgListMixin],
    data() {
      return {
        columns: [
          {
            title: '序号',
            dataIndex: 'rowIndex',
            key: 'rowIndex',
            width: 65,
            align: 'center',
            customRender: function(t, r, index) {
              return parseInt(index) + 1
            }
          },
          { title: '设备名称', dataIndex: 'deviceName', align: 'center' },
          { title: '设备编号', dataIndex: 'deviceNo', align: 'center' },
          { title: '设备型号', dataIndex: 'deviceModel', align: 'center' },
          { title: '所属部门', dataIndex: 'departName', align: 'center' },
          { title: '设备分组', dataIndex: 'groupName', align: 'center' },
          { title: '控制系统', dataIndex: 'controlSystem', align: 'center' }
        ],
        url: {
          list: ''
        }
      }
    },
    methods: {}
  }
</script>
 
<style scoped>
 
</style>