config.js 671B

123456789101112131415161718192021222324252627282930313233
  1. export const optionStatus = [
  2. {
  3. label: 'pending',
  4. value: 'pending',
  5. },
  6. {
  7. label: 'success',
  8. value: 'success',
  9. },
  10. ]
  11. export const indexTable = [
  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: 'ppn', header: 'PPN' },
  18. { field: 'productName', header: 'Nama Produk' },
  19. { field: 'productNumber', header: 'Nomor Produk' },
  20. ]
  21. export const dialogStyle = {
  22. style: {
  23. width: '50vw',
  24. },
  25. breakpoints: {
  26. '960px': '75vw',
  27. '640px': '90vw',
  28. },
  29. modal: true,
  30. }