columns.js 305 B

1234567891011
  1. import i18n from '@/locales'
  2. export const getMaintenanceTableColumn = () => {
  3. return {
  4. field: 'is_maintenance',
  5. title: i18n.t('compute.text_820'),
  6. width: 70,
  7. formatter: ({ row }) => {
  8. return row.is_maintenance ? i18n.t('compute.text_820') : i18n.t('compute.text_821')
  9. },
  10. }
  11. }