shared.ts 723 B

123456789101112131415161718192021222324252627282930
  1. export const typeOptions = [
  2. { value: '1', label: '入库' },
  3. { value: '2', label: '出库' },
  4. { value: '3', label: '入库红冲' },
  5. { value: '4', label: '出库红冲' },
  6. ]
  7. export const mapLabelToType = typeOptions.reduce((prev, current) => ({
  8. ...prev,
  9. [current.label]: current.value
  10. }), {})
  11. export const sourceOptions = [
  12. { value: '1', label: '采销结算' },
  13. { value: '2', label: '线下订单' }
  14. ]
  15. export const mapLabelToSource = sourceOptions.reduce((prev, current) => ({
  16. ...prev,
  17. [current.label]: current.value
  18. }), {})
  19. export const statusOptions = [
  20. { value: '1', label: '待处理', type: 'warning' },
  21. { value: '2', label: '线下订单', type: 'success' }
  22. ]