12345678910111213141516171819 |
- import upload from '@/utils/upload'
- import request from '@/utils/request'
- // 查询乡村婚恋列表
- 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
- })
- }
|