config.js 638B

1234567891011121314151617181920212223242526272829303132
  1. export const optionStatus = [
  2. {
  3. label: 'Pending',
  4. value: 'pending',
  5. },
  6. {
  7. label: 'Berhasil',
  8. value: 'success',
  9. },
  10. ]
  11. export const tableHeader = [
  12. { field: 'updatedAt', header: 'Tanggal' },
  13. { field: 'number', header: 'Nomor Penjualan' },
  14. { field: 'status', header: 'Status' },
  15. { field: 'price', header: 'Harga' },
  16. { field: 'qty', header: 'Kuantitas' },
  17. { field: 'productName', header: 'Nama Produk' },
  18. { field: 'productNumber', header: 'Nomor Produk' },
  19. ]
  20. export const dialogStyle = {
  21. style: {
  22. width: '50vw',
  23. },
  24. breakpoints: {
  25. '960px': '75vw',
  26. '640px': '90vw',
  27. },
  28. modal: true,
  29. }