Selaa lähdekoodia

广西控制价

Tony Kang 2 vuotta sitten
vanhempi
commit
8bbdf531af

+ 2 - 2
web/building_saas/main/html/main.html

@@ -2023,7 +2023,7 @@
                     </div>
                     <!--招标-->
                     <% if (boqType == 1) { %>
-                    <div class="form-group">
+                    <div class="form-group" id="lblTtlDiv">
                         <label class="mb-0">招标接口文件导出</label>
                         <small class="form-text text-muted">招标接口文件由以下2个文件组成,其内容必须保持一致,因此建议一次性全部导出。</small>
                     </div>
@@ -2035,7 +2035,7 @@
                             </label>
                             <small class="form-text text-muted">招标工程量清单数据文件,用于投标人投标报价</small>
                         </div>
-                        <div class="form-check ml-4">
+                        <div class="form-check ml-4" id="bidCtlDiv">
                             <input class="form-check-input" type="checkbox" value="3" id="ex-control">
                             <label class="form-check-label" for="ex-control">
                                 招标控制价

+ 4 - 0
web/building_saas/standard_interface/export/view.js

@@ -114,8 +114,12 @@ function bidAreaSelectChange(dom) {
   if (dom.options[dom.selectedIndex].text === '广西') {
     $('#certifyDivForGX')[0].style.display = "";
     $('#certifyInputForGX')[0].value = '';
+    $('#lblTtlDiv')[0].style.display = "none";
+    $('#bidCtlDiv')[0].style.display = "none";
   } else {
     //
     $('#certifyDivForGX')[0].style.display = "none";
+    $('#lblTtlDiv')[0].style.display = "";
+    $('#bidCtlDiv')[0].style.display = "";
   }
 }