config.js 631B

123456789101112131415161718192021222324252627
  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: 'name', header: 'Nama Pelanggan' },
  14. { field: 'phone', header: 'No HP Pelanggan' },
  15. { field: 'price', header: 'Total Harga' },
  16. { field: 'status', header: 'Status' },
  17. ]
  18. export const cartTable = [
  19. { field: 'number', header: 'Nomor Produk' },
  20. { field: 'name', header: 'Produk' },
  21. { field: 'price', header: 'Harga' },
  22. { field: 'qty', header: 'Kuantitas' },
  23. { field: 'unit', header: 'Satuan' },
  24. ]