src/views/mdc/base/MdcplancloseList.vue
@@ -58,7 +58,7 @@
      <a-table
        ref="table"
        size="middle"
        :scroll="{x:true}"
        :scroll="{x:'max-content',y:465}"
        bordered
        rowKey="id"
        :columns="columns"
@@ -126,29 +126,33 @@
          {
            title:'类型',
            align:"center",
            dataIndex: 'planCloseType'
            dataIndex: 'planCloseType',
            width:500
          },
          {
            title:'时间类型',
            align:"center",
            dataIndex: 'planCloseTimeType'
            dataIndex: 'planCloseTimeType',
            width:350
          },
          {
            title:'时长(分钟)',
            align:"center",
            dataIndex: 'planCloseTimeLong'
            dataIndex: 'planCloseTimeLong',
            width:350
          },
          {
            title:'备注',
            align:"center",
            dataIndex: 'remark'
            dataIndex: 'remark',
            width:380
          },
          {
            title: '操作',
            dataIndex: 'action',
            align:"center",
            fixed:"right",
            width:147,
            width:150,
            scopedSlots: { customRender: 'action' }
          }
        ],