cooperative.js 345 B

123456789101112131415161718
  1. import request from '@/utils/request'
  2. // 查询合作社列表
  3. export function getList(query) {
  4. return request({
  5. url: '/high/server/cooperative/list',
  6. method: 'get',
  7. params: {}
  8. })
  9. }
  10. // 查询合作社详情
  11. export function getDetails(id) {
  12. return request({
  13. url: '/high/server/cooperative/' + id,
  14. method: 'get'
  15. })
  16. }