standard.js 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Mai
  6. * @date
  7. * @version
  8. */
  9. const nodeType = [
  10. {text: '', value: 0},
  11. {text: '建安费', value: 1},
  12. {text: '设备及工(器)具费', value: 2},
  13. {text: '工程建设其他费', value: 3},
  14. {text: '土地拆迁补偿', value: 4},
  15. {text: '预备费', value: 5},
  16. {text: '暂列金额', value: 6},
  17. {text: '计日工', value: 7},
  18. {text: '价差调整', value: 8},
  19. {text: '索赔', value: 9},
  20. {text: '新增费用', value: 10},
  21. {text: '其他费用', value: 11},
  22. {text: '回收金额', value: 12},
  23. {text: '建设期贷款利息', value: 13},
  24. {text: '其他建安工程', value: 14},
  25. ];
  26. const chapterFilter = [];
  27. const jrg = nodeType.find(x => {
  28. return x.text === '计日工';
  29. });
  30. if (jrg) {
  31. chapterFilter.push({node_type: jrg.value});
  32. chapterFilter.push({field: 'name', part: jrg.text});
  33. }
  34. module.exports = {
  35. nodeType,
  36. chapterFilter,
  37. };