config.js 1.5 KB

1234567891011121314151617181920212223
  1. export const columns = [
  2. { title: window.$t('flowPool.poolNumber'), dataIndex: 'poolNumber', align: 'center', width: 200 },
  3. { title: window.$t('flowPool.label'), dataIndex: 'label', align: 'center', width: 200 },
  4. { title: window.$t('flowPool.trafficPoolType'), dataIndex: 'trafficPoolType', align: 'center', width: 200 },
  5. // { title: window.$t('flowPool.trafficPoolStatus'), dataIndex: 'trafficPoolStatus', align: 'center', width: 200 },
  6. { title: window.$t('flowPool.source'), dataIndex: 'sourceName', align: 'center', width: 200 },
  7. { title: window.$t('flowPool.cardRariffName'), dataIndex: 'cardRariffName', align: 'center', width: 200 },
  8. { title: window.$t('flowPool.cardFlow'), dataIndex: 'cardFlow', align: 'center', width: 200 },
  9. { title: window.$t('flowPool.cardNum'), dataIndex: 'cardNum', align: 'center', width: 200 },
  10. { title: window.$t('flowPool.UsedMonth'), dataIndex: 'UsedMonth', align: 'center', width: 200 },
  11. { title: window.$t('flowPool.surplusFlow'), dataIndex: 'surplusFlow', align: 'center', width: 200 },
  12. { title: window.$t('flowPool.totalFlow'), dataIndex: 'totalFlow', align: 'center', width: 200 },
  13. { title: window.$t('flowPool.warnStatus'), dataIndex: 'warnStatus', align: 'center', width: 200 },
  14. { title: window.$t('flowPool.exceededFlow'), dataIndex: 'exceededFlow', align: 'center', width: 200 },
  15. {
  16. title: window.$t('global.common.operations'),
  17. dataIndex: 'id',
  18. slotName: 'id',
  19. align: 'center',
  20. width: 180,
  21. fixed: "right",
  22. }
  23. ]