Browse Source

清单类别

MaiXinRong 7 years ago
parent
commit
f4264abca3
1 changed files with 4 additions and 4 deletions
  1. 4 4
      modules/common/const/bills_type.js

+ 4 - 4
modules/common/const/bills_type.js

@@ -11,13 +11,13 @@ const typeFlag = {
     //分项
     FX: 3,
     //清单    
-    BILL: 4
+    BILLS: 4
 }
 const typeFlagList = [
     {name: '大项费用', value: typeFlag.DXFY},
-    {name: '分部', value: typeFlag.DXFY},
-    {name: '分项', value: typeFlag.DXFY},
-    {name: '清单', value: typeFlag.DXFY}
+    {name: '分部', value: typeFlag.FB},
+    {name: '分项', value: typeFlag.FX},
+    {name: '清单', value: typeFlag.BILLS}
 ];
 
 export {typeFlag as default, typeFlagList as List};