search.js 658 B

123456789101112131415161718192021222324252627
  1. // pages/search/search.js
  2. import httpRequestApi from '../../utils/APIRequest';
  3. export const searchInit = (that) => {
  4. that.setData({
  5. searchData: {
  6. searchList: []
  7. }
  8. })
  9. //获取输入值,并请求接口
  10. that.focus = ({detail}) => {
  11. httpRequestApi.getCourse({
  12. title: detail.value
  13. }).success((res)=>{
  14. that.data.searchData.searchList = res.data.data.list;
  15. that.setData({
  16. searchData: that.data.searchData
  17. })
  18. })
  19. }
  20. //跳转到详情页
  21. that.details = ({ currentTarget }) => {
  22. const id = currentTarget.dataset.id;
  23. wx.navigateTo({
  24. url: '/pages/details/details?id=' + id
  25. })
  26. }
  27. }