|
|
@@ -114,12 +114,24 @@ 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";
|
|
|
+ let gxDom1 = $('#lblTtlDiv');
|
|
|
+ if (gxDom1 && gxDom1.length > 0) {
|
|
|
+ gxDom1[0].style.display = "none";
|
|
|
+ }
|
|
|
+ let gxDom2 = $('#bidCtlDiv');
|
|
|
+ if (gxDom2 && gxDom2.length > 0) {
|
|
|
+ gxDom2[0].style.display = "none";
|
|
|
+ }
|
|
|
} else {
|
|
|
//
|
|
|
$('#certifyDivForGX')[0].style.display = "none";
|
|
|
- $('#lblTtlDiv')[0].style.display = "";
|
|
|
- $('#bidCtlDiv')[0].style.display = "";
|
|
|
+ let gxDom1 = $('#lblTtlDiv');
|
|
|
+ if (gxDom1 && gxDom1.length > 0) {
|
|
|
+ gxDom1[0].style.display = "";
|
|
|
+ }
|
|
|
+ let gxDom2 = $('#bidCtlDiv');
|
|
|
+ if (gxDom2 && gxDom2.length > 0) {
|
|
|
+ gxDom2[0].style.display = "";
|
|
|
+ }
|
|
|
}
|
|
|
}
|