zhou zhou
14 小时以前 c579731e0c206d6062f8442ec9df70ca781b26f6
rsf-design/src/views/basic-info/bas-station-area/basStationAreaTable.columns.js
@@ -159,18 +159,22 @@
    {
      prop: 'operation',
      label: '操作',
      width: 160,
      align: 'right',
      width: 120,
      align: 'center',
      fixed: 'right',
      formatter: (row) =>
        h(ArtButtonMore, {
          list: operations,
          onClick: (item) => {
            if (item.key === 'view') handleView?.(row)
            if (item.key === 'edit') handleEdit?.(row)
            if (item.key === 'delete') handleDelete?.(row)
          }
        })
        h(
          'div',
          { class: 'flex justify-center' },
          h(ArtButtonMore, {
            list: operations,
            onClick: (item) => {
              if (item.key === 'view') handleView?.(row)
              if (item.key === 'edit') handleEdit?.(row)
              if (item.key === 'delete') handleDelete?.(row)
            }
          })
        )
    }
  ]
}