company.js 640 B

1234567891011121314151617181920212223242526
  1. import request from './fetcher/request'
  2. export default {
  3. getExhibitionDetail () {
  4. return request.get('activity/getActivityDetail')
  5. },
  6. getCompanyHalls (data) {
  7. return request.get('company/getCompanyHalls', {
  8. pageNum: 1,
  9. pageSize: 999
  10. })
  11. },
  12. getCompanyByHall (boothHall) {
  13. return request.get('company/getCompanyByHall', {
  14. boothHall,
  15. pageNum: 1,
  16. pageSize: 999,
  17. })
  18. },
  19. getCompanyDetail (companyId) {
  20. return request.get('company/getCompanyDetail', { companyId })
  21. },
  22. getCompanyDetailByScene (sceneNum) {
  23. return request.get('company/getCompanyByScene', { sceneNum })
  24. }
  25. }