This commit is contained in:
2023-08-16 16:08:40 +03:00
parent 3c17276e27
commit 1018b4b318
2 changed files with 10 additions and 6 deletions

View File

@@ -182,7 +182,11 @@ function searchTown(el){
timer = null;
let form = el.form;
let type_transport = form['type_transport'].value;
let type_transport_el = form['type_transport'];
let type_transport = ""
if(type_transport_el){
type_transport = type_transport_el.value
}
let search_str = el.value;
let get_address_point = new Object({type_transport, search_str});
get_address_point['ctrl_name'] = el.name;