...
|
...
|
@@ -1761,16 +1761,13 @@ exports.handleSuggestData = (origin, query) => { |
|
|
}
|
|
|
|
|
|
list.push({
|
|
|
childList: [
|
|
|
{
|
|
|
name: `${value.keyword}`,
|
|
|
href: helpers.urlFormat(`/so/${stringCode.utf8ToHex(value.keyword)}.html`, null, 'www')
|
|
|
}
|
|
|
]
|
|
|
name: `${value.keyword}`,
|
|
|
href: helpers.urlFormat(`/so/${stringCode.utf8ToHex(value.keyword)}.html`, null, 'www')
|
|
|
});
|
|
|
});
|
|
|
|
|
|
leftContent.allSuggest = {all: all, list: list};
|
|
|
console.log(leftContent.allSuggest);
|
|
|
|
|
|
return leftContent;
|
|
|
};
|
...
|
...
|
|