|
@@ -76,4 +76,12 @@ function overwriteRationCalcBases() {
|
|
|
{ type: 'common', name: '建安费' },
|
|
{ type: 'common', name: '建安费' },
|
|
|
{ type: 'rationCommon', name: '定额建安费' }
|
|
{ type: 'rationCommon', name: '定额建安费' }
|
|
|
];
|
|
];
|
|
|
-})();
|
|
|
|
|
|
|
+})();
|
|
|
|
|
+
|
|
|
|
|
+// 在新建分段的时候需要隐藏养护类别和费用标准
|
|
|
|
|
+if (typeof $ !== 'undefined') { // 后端也有引用这个文件,后端引用时$没有定义会报错
|
|
|
|
|
+ $(document).ready(function () {
|
|
|
|
|
+ $('#tender-engineering-group').hide();
|
|
|
|
|
+ $('#tender-feeStandard-group').hide();
|
|
|
|
|
+ });
|
|
|
|
|
+}
|