advance.js 691 B

123456789101112131415161718192021222324252627282930
  1. 'use strict';
  2. /**
  3. * 预付款相关常量
  4. *
  5. * @author EllisRan
  6. * @date 2021/6/17
  7. * @version
  8. */
  9. // 预付款类型
  10. const typeCol = [
  11. { key: 'start', type: 0, name: '开工预付款' },
  12. { key: 'material', type: 1, name: '材料预付款' },
  13. { key: 'safe', type: 2, name: '安全生产费预付款' },
  14. { key: 'dust', type: 3, name: '扬尘污染费预付款' },
  15. ];
  16. const typeColMap = {
  17. 0: { text: '开工预付款', value: 'start' },
  18. 1: { text: '材料预付款', value: 'material' },
  19. 2: { text: '安全生产费预付款', value: 'safe' },
  20. 3: { text: '扬尘污染费预付款', value: 'dust' },
  21. };
  22. module.exports = {
  23. typeCol,
  24. typeColMap,
  25. };