Browse Source

Merge remote-tracking branch 'origin/dev5.3.1' into dev/new1

zhouna 5 years ago
parent
commit
0ff758f4e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/store/async-actions/fetchModules.js

+ 1 - 1
src/store/async-actions/fetchModules.js

@@ -32,7 +32,7 @@ const api={
 };
 
 export const getFeature = (item)=>{
-  const datas = json(api.getSymptomFeature+'?text='+item,{});
+  const datas = json(api.getSymptomFeature+'?text='+encodeURIComponent(item),{});
   return datas;
 }