compSubjectSetting.js 525 B

12345678910111213141516171819202122232425262728293031
  1. export default {
  2. column: [
  3. {
  4. label: '科目代码',
  5. prop: 'code',
  6. width: 100,
  7. align: 'center',
  8. },
  9. {
  10. label: '科目名称',
  11. prop: 'name',
  12. width: 260,
  13. },
  14. {
  15. label: '对应会计科目',
  16. prop: 'subjectName',
  17. width: 300,
  18. },
  19. {
  20. label: '对应高新研发费用科目',
  21. prop: 'rdSubject',
  22. width: 300,
  23. },
  24. {
  25. label: '对应加计扣除研发费用科目',
  26. prop: 'adSubject',
  27. width: 300,
  28. },
  29. ],
  30. };