config.js 1.4 KB

12345678910111213141516171819202122232425262728
  1. export const columns = [
  2. { title: window.$t('lotCard.iccid'), dataIndex: 'ICCID', align: 'center', width: 200 },
  3. { title: window.$t('lotCard.dataBundleId'), dataIndex: 'dataBundleId', align: 'center', width: 200 },
  4. { title: window.$t('lotCard.ExpireTime'), dataIndex: 'expire_time', align: 'center', width: 200 },
  5. { title: window.$t('lotCard.CreateTime'), dataIndex: 'created_time', align: 'center', width: 200 },
  6. { title: window.$t('lotCard.created_at'), dataIndex: 'created_at', align: 'center', width: 200 },
  7. { title: window.$t('lotCard.deleted_at'), dataIndex: 'deleted_at', align: 'center', width: 200 },
  8. { title: window.$t('lotCard.updated_at'), dataIndex: 'updated_at', align: 'center', width: 200 },
  9. { title: window.$t('lotCard.orderID'), dataIndex: 'orderId', align: 'center', width: 200 },
  10. { title: window.$t('lotCard.price'), dataIndex: 'price', align: 'center', width: 200 },
  11. { title: window.$t('lotCard.quantity'), dataIndex: 'quantity', align: 'center', width: 200 },
  12. { title: window.$t('lotCard.packageStatus'), dataIndex: 'status', align: 'center', width: 200 },
  13. { title: window.$t('lotCard.source'), dataIndex: 'source', align: 'center', width: 200 },
  14. { title: window.$t('lotCard.UserId'), dataIndex: 'user_id', 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. ]