1234567891011121314151617181920212223242526 |
- import upload from '@/utils/upload'
- import request from '@/utils/request'
- // 查询合作社列表
- export function getCooperative(query) {
- return request({
- url: '/system/cooperative/list',
- method: 'get',
- params: query
- })
- }
- export function getCooperative() {
- return request({
- url: '/system/user/listAll',
- method: 'get'
- })
- }
- // 查询合作社详情
- export function updateUserProfile(data) {
- return request({
- url: '/system/user/profile',
- method: 'put',
- data: data
- })
- }
|