1234567891011121314151617181920212223242526272829303132 |
- import upload from '@/utils/upload'
- import request from '@/utils/request'
- // 获取选择项健值每一项
- export function typeOptionSelect() {
- return request({
- url: '/system/dict/data/list?pageNum=1&pageSize=10&dictType=lrr_service_category',
- method: 'get',
- })
- }
- // 获取志愿者详情页
- // export function getDetailsvolunteerId(volunteerId) {
- // return request({
- // url: `/system/core/volunteer/info/getDetails/${volunteerId}`,
- // method: 'get',
- // })
- // }
- // 获取志愿者列表信息
- export function volunteerinfolist() {
- return request({
- url: '/core/volunteer/info/list',
- method: 'get',
- })
- }
|