|
@@ -14,9 +14,12 @@ export const getSearchList = (val) => {
|
|
|
return (dispatch, getState) => {
|
|
|
const state = getState();
|
|
|
const diagnosticList = state.diagnosticList.diagnosticList
|
|
|
+ console.log('diagnosticList', diagnosticList)
|
|
|
let noIds = []
|
|
|
for(let i = 0; i < diagnosticList.length; i++) {
|
|
|
- noIds.push(diagnosticList[i].id)
|
|
|
+ if(diagnosticList[i].conceptId) {
|
|
|
+ noIds.push(diagnosticList[i].conceptId)
|
|
|
+ }
|
|
|
}
|
|
|
json('/retrieval/getTagInfos',{
|
|
|
type:'7',
|