liting2017 6 years ago
parent
commit
5499dc4d5b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/js/thinkTank/policyList.js

+ 2 - 2
src/js/thinkTank/policyList.js

@@ -29,14 +29,14 @@ $(function () {
 					hashArr.map(item => {
 						if (item.indexOf('name') > -1) {
 							let names = item.split('=')
-							theKeyword = names[1];
+							theKeyword = decodeURIComponent(names[1]);
 							$('#search_on input').val(theKeyword);
 						}
 					})
 				} else {
 					if (newHash.indexOf('name') > -1) {
 						let names = newHash.split('=')
-						theKeyword = names[1];
+						theKeyword = decodeURIComponent(names[1]);
 						$('#search_on input').val(theKeyword);
 					}
 				}