|
|
@@ -102,4 +102,14 @@ const EXPORT_VIEW = (() => {
|
|
|
$(document).ready(() => {
|
|
|
$('#interface-export-modal').on('show.bs.modal', () => STD_INTERFACE.initInterfaceAreas($('#export-parent-area'), $('#export-sub-area')));
|
|
|
EXPORT_VIEW.exportListener();
|
|
|
-})
|
|
|
+})
|
|
|
+
|
|
|
+function bidAreaSelectChange(dom) {
|
|
|
+ if (dom.options[dom.selectedIndex].text === '广西') {
|
|
|
+ $('#certifyDivForGX')[0].style.display = "";
|
|
|
+ $('#certifyInputForGX')[0].value = '';
|
|
|
+ } else {
|
|
|
+ //
|
|
|
+ $('#certifyDivForGX')[0].style.display = "none";
|
|
|
+ }
|
|
|
+}
|