urls.js 321 B

1234567891011
  1. const host = 'http://192.168.1.73:28002';
  2. const urls ={
  3. hushen:host + '/api/his/hushen',
  4. newsList:host + '/api/news/list',
  5. detail:host +'/api/news/details',
  6. search: host + '/api/news/search',
  7. hotSearch: host + '/api/news/search/hot',
  8. followList:host + '/api/follow/list'
  9. }
  10. module.exports = urls;