123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 'use strict';
- /**
- *
- *
- * @author Mai
- * @date
- * @version
- */
- const nodeType = [
- {text: '', value: 0},
- {text: '建安费', value: 1},
- {text: '设备及工(器)具费', value: 2},
- {text: '工程建设其他费', value: 3},
- {text: '土地拆迁补偿', value: 4},
- {text: '预备费', value: 5},
- {text: '暂列金额', value: 6},
- {text: '计日工', value: 7},
- {text: '价差调整', value: 8},
- {text: '索赔', value: 9},
- {text: '新增费用', value: 10},
- {text: '其他费用', value: 11},
- {text: '回收金额', value: 12},
- {text: '建设期贷款利息', value: 13},
- {text: '其他建安工程', value: 14},
- ];
- const chapterFilter = [];
- const jrg = nodeType.find(x => {
- return x.text === '计日工';
- });
- if (jrg) {
- chapterFilter.push({node_type: jrg.value});
- chapterFilter.push({field: 'name', part: jrg.text});
- }
- module.exports = {
- nodeType,
- chapterFilter,
- };
|