123456789101112131415161718 |
- import request from '@/utils/request'
- // 查询合作社列表
- export function getList(query) {
- return request({
- url: '/high/server/cooperative/list',
- method: 'get',
- params: {}
- })
- }
- // 查询合作社详情
- export function getDetails(id) {
- return request({
- url: '/high/server/cooperative/' + id,
- method: 'get'
- })
- }
|