zhangherong
2025-05-14 ef3408f9a474c7e64016fbe0d0b7f6de0d2c99dd
src/views/eam/base/modules/EamMaintenanceStandardDetailList.vue
@@ -12,7 +12,6 @@
        :pagination="ipagination"
        :loading="loading"
        class="j-table-force-nowrap"
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
        @change="handleTableChange">
      </a-table>
    </div>
@@ -42,34 +41,29 @@
      // 表头
      columns: [
        {
          title: '#',
          dataIndex: '',
          key: 'rowIndex',
          width: 60,
          align: 'center',
          customRender: function(t, r, index) {
            return parseInt(index) + 1
          }
        },
        {
          title: '序号',
          align: 'center',
          dataIndex: 'itemCode'
          dataIndex: 'itemCode',
          width: 60,
        },
        {
          title: '部位',
          align: 'center',
          dataIndex: 'itemPart',
          width: 200,
          ellipsis: true,
        },
        {
          title: '保养项',
          align: 'center',
          dataIndex: 'itemName'
        },
        {
          title: '子项目',
          align: 'center',
          dataIndex: 'subItemName'
          dataIndex: 'itemName',
          ellipsis: true,
        },
        {
          title: '保养要求',
          align: 'center',
          dataIndex: 'itemDemand'
          dataIndex: 'itemDemand',
          ellipsis: true,
        }
      ],
      url: {