|
@@ -9,15 +9,24 @@ export const searchInit = (that) => {
|
|
})
|
|
})
|
|
//获取输入值,并请求接口
|
|
//获取输入值,并请求接口
|
|
that.focus = ({detail}) => {
|
|
that.focus = ({detail}) => {
|
|
- httpRequestApi.getCourse({
|
|
|
|
- title: detail.value
|
|
|
|
- }).success((res)=>{
|
|
|
|
- that.data.searchData.searchList = res.data.data.list;
|
|
|
|
|
|
+ if (detail.value) {
|
|
|
|
+ httpRequestApi.getCourse({
|
|
|
|
+ title: detail.value
|
|
|
|
+ }).success((res)=>{
|
|
|
|
+ console.log('搜索结果', res)
|
|
|
|
+ that.data.searchData.searchList = res.data.data.list;
|
|
|
|
+ that.data.searchData.recommendList = [];
|
|
|
|
+ that.setData({
|
|
|
|
+ searchData: that.data.searchData
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ }else {
|
|
|
|
+ that.data.searchData.searchList = [];
|
|
that.data.searchData.recommendList = [];
|
|
that.data.searchData.recommendList = [];
|
|
that.setData({
|
|
that.setData({
|
|
searchData: that.data.searchData
|
|
searchData: that.data.searchData
|
|
})
|
|
})
|
|
- })
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
//跳转到详情页
|
|
//跳转到详情页
|
|
that.details = ({ currentTarget }) => {
|
|
that.details = ({ currentTarget }) => {
|
|
@@ -27,7 +36,7 @@ export const searchInit = (that) => {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
httpRequestApi.getCategoryRecommend().success((res)=>{
|
|
httpRequestApi.getCategoryRecommend().success((res)=>{
|
|
- console.log('搜', res)
|
|
|
|
|
|
+ console.log('热门搜', res)
|
|
that.data.searchData.recommendList = res.data.data;
|
|
that.data.searchData.recommendList = res.data.data;
|
|
that.setData({
|
|
that.setData({
|
|
searchData: that.data.searchData
|
|
searchData: that.data.searchData
|