Browse Source

feat: 新增基价类型

zhangweicheng 10 months ago
parent
commit
5da0d8d59a
1 changed files with 5 additions and 3 deletions
  1. 5 3
      public/web/tools_const.js

+ 5 - 3
public/web/tools_const.js

@@ -1,4 +1,4 @@
-'use strict';
+"use strict";
 
 /**
  *
@@ -9,7 +9,9 @@
  */
 //允许使用的工料机类型:人工、普通材料、混凝土、砂浆、配合比、商品混凝土、商品砂浆、外购砼构件、绿化苗木
 // 机械台班、机械组成物、机上人工、设备
-let allowGljType = [1, 201, 202, 203, 204, 205, 206, 208, 209, 301, 302, 303, 5, 9];
+let allowGljType = [
+  1, 201, 202, 203, 204, 205, 206, 208, 209, 301, 302, 303, 5, 9, 10,
+];
 
 //允许含有组成物的工料机类型:混凝土、砂浆、配合比、机械台班
 let allowComponent = [202, 203, 204, 301];
@@ -22,4 +24,4 @@ let machineComponent = [201, 302, 303];
 //允许含有组成物的材料工料机类型:混凝土、砂浆、配合比
 let materialAllowComponent = [202, 203, 204];
 //可以作为材料工料机组成物的工料机类型:普通材料
-let materialComponent = [201];
+let materialComponent = [201];