|
|
@@ -43,10 +43,12 @@ const query = function getQueryForm(data) {
|
|
|
// }
|
|
|
// }
|
|
|
// console.log(map.value);
|
|
|
- form.append("<input name='" + key + "' value='" + encodeURIComponent(map.value) + "'>")
|
|
|
+ form.append("<input name='" + key + "' value='" + map.value + "'>")
|
|
|
+ // form.append("<input name='" + key + "' value='" + encodeURIComponent(map.value) + "'>")
|
|
|
} else if ('array' === fetchJsType(map.value)) {
|
|
|
let string = map.value.join(',');
|
|
|
- form.append("<input name='" + key + "' value='" + encodeURIComponent(string) + "'>")
|
|
|
+ form.append("<input name='" + key + "' value='" + string + "'>")
|
|
|
+ // form.append("<input name='" + key + "' value='" + encodeURIComponent(string) + "'>")
|
|
|
}
|
|
|
}
|
|
|
for (let key in this.param){
|
|
|
@@ -1193,7 +1195,8 @@ const query = function getQueryForm(data) {
|
|
|
|
|
|
// url path on search form option renderer
|
|
|
function searchOptionToUrlsearch() {
|
|
|
- let data = decodeURIComponent(window.location.search);
|
|
|
+ let data = (window.location.search);
|
|
|
+ // let data = decodeURIComponent(window.location.search);
|
|
|
data = decodeURIComponent(data);
|
|
|
if (!!data) {
|
|
|
data = (data.substr(1)).split('&');
|