| 123456789101112131415161718192021222324252627282930 | 
							- 'use strict';
 
- /**
 
-  * 预付款相关常量
 
-  *
 
-  * @author EllisRan
 
-  * @date 2021/6/17
 
-  * @version
 
-  */
 
- // 预付款类型
 
- const typeCol = [
 
-     { key: 'start', type: 0, name: '开工预付款' },
 
-     { key: 'material', type: 1, name: '材料预付款' },
 
-     { key: 'safe', type: 2, name: '安全生产费预付款' },
 
-     { key: 'dust', type: 3, name: '扬尘污染费预付款' },
 
- ];
 
- const typeColMap = {
 
-     0: { text: '开工预付款', value: 'start' },
 
-     1: { text: '材料预付款', value: 'material' },
 
-     2: { text: '安全生产费预付款', value: 'safe' },
 
-     3: { text: '扬尘污染费预付款', value: 'dust' },
 
- };
 
- module.exports = {
 
-     typeCol,
 
-     typeColMap,
 
- };
 
 
  |